summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-03-24 17:22:18 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-03-24 17:22:18 +0200
commitbe0c4232d10d02c6cdbb7dad1363f38c1093b90f (patch)
tree7cc74d1edd7998ca3e603324c61bba38dbe4fe5e /src
parent86fbb0915958f887fd5f84c4865836bd6595b8d0 (diff)
downloadfpGUI-be0c4232d10d02c6cdbb7dad1363f38c1093b90f.tar.xz
This makes sure csLoading is still active for the current Form when
properties are populated.
Diffstat (limited to 'src')
-rw-r--r--src/gui/fpg_form.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/fpg_form.pas b/src/gui/fpg_form.pas
index 0361d3fc..21f934ed 100644
--- a/src/gui/fpg_form.pas
+++ b/src/gui/fpg_form.pas
@@ -389,8 +389,8 @@ end;
procedure TfpgBaseForm.AfterConstruction;
begin
- inherited AfterConstruction;
AfterCreate;
+ inherited AfterConstruction;
if Assigned(FOnCreate) then
FOnCreate(self);
end;