LCL, fixed typo in TApplicationProperties field

git-svn-id: trunk@46582 -
This commit is contained in:
jesus 2014-10-17 19:17:49 +00:00
parent 7f23c55be1
commit 4101822a9d
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;