mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 12:36:15 +02:00
LCL: don't publish the Dialog property of a TCommonDialogAction, fixes bug #10817
git-svn-id: trunk@14116 -
This commit is contained in:
parent
746753524e
commit
e79be37c3d
@ -173,9 +173,9 @@ type
|
||||
public
|
||||
constructor Create(TheOwner: TComponent); override;
|
||||
procedure ExecuteTarget(Target: TObject); override;
|
||||
property Dialog: TOpenDialog read GetDialog;
|
||||
published
|
||||
property Caption;
|
||||
property Dialog: TOpenDialog read GetDialog;
|
||||
property Enabled;
|
||||
property HelpContext;
|
||||
property HelpKeyword;
|
||||
@ -215,9 +215,9 @@ type
|
||||
function GetDialogClass: TCommonDialogClass; override;
|
||||
public
|
||||
constructor Create(TheOwner: TComponent); override;
|
||||
property Dialog: TSaveDialog read GetSaveDialog;
|
||||
published
|
||||
property Caption;
|
||||
property Dialog: TSaveDialog read GetSaveDialog;
|
||||
property Enabled;
|
||||
property HelpContext;
|
||||
property Hint;
|
||||
@ -396,9 +396,10 @@ type
|
||||
function GetDialog: TFontDialog;
|
||||
protected
|
||||
function GetDialogClass: TCommonDialogClass; override;
|
||||
public
|
||||
property Dialog: TFontDialog read GetDialog;
|
||||
published
|
||||
property Caption;
|
||||
property Dialog: TFontDialog read GetDialog;
|
||||
property Enabled;
|
||||
property HelpContext;
|
||||
property HelpKeyword;
|
||||
@ -422,9 +423,10 @@ type
|
||||
function GetDialog: TColorDialog;
|
||||
protected
|
||||
function GetDialogClass: TCommonDialogClass; override;
|
||||
public
|
||||
property Dialog: TColorDialog read GetDialog;
|
||||
published
|
||||
property Caption;
|
||||
property Dialog: TColorDialog read GetDialog;
|
||||
property Enabled;
|
||||
property HelpContext;
|
||||
property HelpKeyword;
|
||||
|
Loading…
Reference in New Issue
Block a user