mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-28 17:29:36 +02:00
LCL, fixed typo in TApplicationProperties field
git-svn-id: trunk@46582 -
This commit is contained in:
parent
7f23c55be1
commit
4101822a9d
@ -1569,7 +1569,7 @@ type
|
||||
TApplicationProperties = class(TLCLComponent)
|
||||
private
|
||||
FCaptureExceptions: boolean;
|
||||
FExceptionDialotType: TApplicationExceptionDlg;
|
||||
FExceptionDialogType: TApplicationExceptionDlg;
|
||||
FHelpFile: string;
|
||||
FHint: string;
|
||||
FHintColor: TColor;
|
||||
@ -1639,7 +1639,7 @@ type
|
||||
published
|
||||
property CaptureExceptions: boolean read FCaptureExceptions
|
||||
write SetCaptureExceptions default True;
|
||||
property ExceptionDialog: TApplicationExceptionDlg read FExceptionDialotType
|
||||
property ExceptionDialog: TApplicationExceptionDlg read FExceptionDialogType
|
||||
write SetExceptionDialog default aedOkCancelDialog;
|
||||
property HelpFile: string read FHelpFile write SetHelpFile;
|
||||
property Hint: string read FHint write SetHint;
|
||||
|
@ -69,7 +69,7 @@ end;
|
||||
procedure TApplicationProperties.SetExceptionDialog(
|
||||
AValue: TApplicationExceptionDlg);
|
||||
begin
|
||||
if FExceptionDialotType=AValue then
|
||||
if FExceptionDialogType=AValue then
|
||||
Exit;
|
||||
if not (csDesigning in ComponentState) then
|
||||
Application.ExceptionDialog := AValue;
|
||||
|
Loading…
Reference in New Issue
Block a user