diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-06-19 15:17:38 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-06-19 15:17:38 +0000 |
commit | 8ff503a46409a7ca024e9f85b65c2baebcc5982e (patch) | |
tree | 8bf39a9b73d339c92c45635b34c1a19d4f500150 /src | |
parent | 1de4860f5ffd1ce743d0b1f63a20e94d06e83785 (diff) | |
download | fpGUI-8ff503a46409a7ca024e9f85b65c2baebcc5982e.tar.xz |
* Updated the Bevel example so it compiles again. * Updated the EventTest example.
Diffstat (limited to 'src')
-rw-r--r-- | src/corelib/gdi/gfx_gdi.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/gdi/gfx_gdi.pas b/src/corelib/gdi/gfx_gdi.pas index 77b4379d..67d04de1 100644 --- a/src/corelib/gdi/gfx_gdi.pas +++ b/src/corelib/gdi/gfx_gdi.pas @@ -1315,9 +1315,9 @@ begin SetCursor(hc); end; -constructor TfpgWindowImpl.Create(aowner: TComponent); +constructor TfpgWindowImpl.Create(AOwner: TComponent); begin - inherited; + inherited Create(AOwner); FWinHandle := 0; end; |