diff options
author | Graeme Geldenhuys <graemeg@users.sourceforge.net> | 2006-12-07 08:29:32 +0000 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@users.sourceforge.net> | 2006-12-07 08:29:32 +0000 |
commit | b68e418899fd6a7552312ac69ea74632d384db97 (patch) | |
tree | 309872d35bc6b14603b07a64068af44e8b70dbf4 /gfx/gdi | |
parent | c91eebac7b6d141d2da3114537942850accccab8 (diff) | |
download | fpGUI-b68e418899fd6a7552312ac69ea74632d384db97.tar.xz |
* Implemented AddWindow and RemoveWindow in TFCustomApplication.
* In TCustomForm the Show and Close adds or removes the internal Wnd
to GFApplication, otherwise they don't receive system events.
* Started fixing up the Layout Test demo.
Diffstat (limited to 'gfx/gdi')
-rw-r--r-- | gfx/gdi/gfx_gdi.pas | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gfx/gdi/gfx_gdi.pas b/gfx/gdi/gfx_gdi.pas index 588ef9ae..7f60733b 100644 --- a/gfx/gdi/gfx_gdi.pas +++ b/gfx/gdi/gfx_gdi.pas @@ -166,7 +166,6 @@ type { default methods } constructor Create; override; destructor Destroy; override; - procedure AddWindow(AWindow: TFCustomWindow); override; procedure Initialize(ADisplayName: String = ''); override; procedure Run; override; procedure Quit; override; @@ -1018,12 +1017,6 @@ begin inherited Destroy; end; -procedure TGDIApplication.AddWindow(AWindow: TFCustomWindow); -begin - Forms.Add(AWindow); -end; - - procedure TGDIApplication.Initialize(ADisplayName: String); begin |