summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-01-12 17:10:25 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-01-12 17:10:25 +0200
commitbfbbcc760c6bb333a4df154295b240c24c61ffbd (patch)
treec4c9506ae7162c43136d25030adcf35933744604 /src
parent0e43d10b68b5cfe1488771c3efc021e7d512f46f (diff)
downloadfpGUI-bfbbcc760c6bb333a4df154295b240c24c61ffbd.tar.xz
Set Width and Height properties so internal state is correcty.
We must not use field variables for Width, Heigh, Top and Left any more.
Diffstat (limited to 'src')
-rw-r--r--src/gui/fpg_tab.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/fpg_tab.pas b/src/gui/fpg_tab.pas
index 0e87292c..ab9ee9e0 100644
--- a/src/gui/fpg_tab.pas
+++ b/src/gui/fpg_tab.pas
@@ -1078,8 +1078,8 @@ begin
inherited Create(AOwner);
FFont := fpgStyle.DefaultFont;
FPages := TList.Create;
- FWidth := 150;
- FHeight := 100;
+ Width := 150;
+ Height := 100;
FIsContainer := True;
FTabOptions := [];
FActivePageIndex := 0;