mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 22:16:17 +02:00
lcl: fix typo
git-svn-id: trunk@52651 -
This commit is contained in:
parent
2e0d1a0645
commit
4d405f5f01
@ -713,7 +713,7 @@ type
|
||||
|
||||
TNoteBookStringsTabControl = class(TPageControl) // TCustomTabControl, TODO TCustomTabControl, and fix all widgetsets
|
||||
protected
|
||||
FHandelCreated: TNotifyEvent;
|
||||
FHandleCreated: TNotifyEvent;
|
||||
procedure CreateHandle; override;
|
||||
class procedure WSRegisterClass; override;
|
||||
end;
|
||||
|
@ -144,8 +144,8 @@ end;
|
||||
procedure TNoteBookStringsTabControl.CreateHandle;
|
||||
begin
|
||||
inherited CreateHandle;
|
||||
if FHandelCreated <> nil then
|
||||
FHandelCreated(self);
|
||||
if FHandleCreated <> nil then
|
||||
FHandleCreated(self);
|
||||
end;
|
||||
|
||||
class procedure TNoteBookStringsTabControl.WSRegisterClass;
|
||||
@ -291,7 +291,7 @@ begin
|
||||
FNoteBook.OnGetImageIndex := @NBGetImageIndex;
|
||||
FNoteBook.OnChanging := @NBChanging;
|
||||
FNoteBook.OnChange := @NBPageChanged;
|
||||
TNoteBookStringsTabControl(FNoteBook).FHandelCreated := @NBHandleCreated;
|
||||
TNoteBookStringsTabControl(FNoteBook).FHandleCreated := @NBHandleCreated;
|
||||
TabControlBoundsChange;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user