浏览代码

Merge pull request #278 from uecasm/patch-1

TWizardPage Surface properties are read-only
Martijn Laan 7 年之前
父节点
当前提交
ac34b87c0f
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      ISHelp/isxclasses.pas

+ 4 - 4
ISHelp/isxclasses.pas

@@ -627,9 +627,9 @@ TWizardPage = class(TComponent)
   property ID: Integer; read;
   property Caption: String; read write;
   property Description: String; read write;
-  property Surface: TNewNotebookPage; read write;
-  property SurfaceHeight: Integer; read write;
-  property SurfaceWidth: Integer; read write;
+  property Surface: TNewNotebookPage; read;
+  property SurfaceHeight: Integer; read;
+  property SurfaceWidth: Integer; read;
   property OnActivate: TWizardPageNotifyEvent; read write;
   property OnBackButtonClick: TWizardPageButtonEvent; read write;
   property OnCancelButtonClick: TWizardPageCancelEvent; read write;
@@ -811,4 +811,4 @@ TUninstallProgressForm = class(TSetupForm)
   property BeveledLabel: TNewStaticText; read;
   property Bevel: TBevel; read;
   property CancelButton: TNewButton; read;
-end;
+end;