mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 14:01:49 +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
|
public
|
||||||
constructor Create(TheOwner: TComponent); override;
|
constructor Create(TheOwner: TComponent); override;
|
||||||
procedure ExecuteTarget(Target: TObject); override;
|
procedure ExecuteTarget(Target: TObject); override;
|
||||||
|
property Dialog: TOpenDialog read GetDialog;
|
||||||
published
|
published
|
||||||
property Caption;
|
property Caption;
|
||||||
property Dialog: TOpenDialog read GetDialog;
|
|
||||||
property Enabled;
|
property Enabled;
|
||||||
property HelpContext;
|
property HelpContext;
|
||||||
property HelpKeyword;
|
property HelpKeyword;
|
||||||
@ -215,9 +215,9 @@ type
|
|||||||
function GetDialogClass: TCommonDialogClass; override;
|
function GetDialogClass: TCommonDialogClass; override;
|
||||||
public
|
public
|
||||||
constructor Create(TheOwner: TComponent); override;
|
constructor Create(TheOwner: TComponent); override;
|
||||||
|
property Dialog: TSaveDialog read GetSaveDialog;
|
||||||
published
|
published
|
||||||
property Caption;
|
property Caption;
|
||||||
property Dialog: TSaveDialog read GetSaveDialog;
|
|
||||||
property Enabled;
|
property Enabled;
|
||||||
property HelpContext;
|
property HelpContext;
|
||||||
property Hint;
|
property Hint;
|
||||||
@ -396,9 +396,10 @@ type
|
|||||||
function GetDialog: TFontDialog;
|
function GetDialog: TFontDialog;
|
||||||
protected
|
protected
|
||||||
function GetDialogClass: TCommonDialogClass; override;
|
function GetDialogClass: TCommonDialogClass; override;
|
||||||
|
public
|
||||||
|
property Dialog: TFontDialog read GetDialog;
|
||||||
published
|
published
|
||||||
property Caption;
|
property Caption;
|
||||||
property Dialog: TFontDialog read GetDialog;
|
|
||||||
property Enabled;
|
property Enabled;
|
||||||
property HelpContext;
|
property HelpContext;
|
||||||
property HelpKeyword;
|
property HelpKeyword;
|
||||||
@ -422,9 +423,10 @@ type
|
|||||||
function GetDialog: TColorDialog;
|
function GetDialog: TColorDialog;
|
||||||
protected
|
protected
|
||||||
function GetDialogClass: TCommonDialogClass; override;
|
function GetDialogClass: TCommonDialogClass; override;
|
||||||
|
public
|
||||||
|
property Dialog: TColorDialog read GetDialog;
|
||||||
published
|
published
|
||||||
property Caption;
|
property Caption;
|
||||||
property Dialog: TColorDialog read GetDialog;
|
|
||||||
property Enabled;
|
property Enabled;
|
||||||
property HelpContext;
|
property HelpContext;
|
||||||
property HelpKeyword;
|
property HelpKeyword;
|
||||||
|
Loading…
Reference in New Issue
Block a user