summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-08-24 12:02:17 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-08-24 12:02:17 +0200
commita54d7ec91e8ac04c70c69ecb3b7cd6f720f35072 (patch)
tree2f541bcb6d39e23351d33187b02cc75dc664722e /src
parent872a9691392910324c88578061c729ed6b81c4b7 (diff)
downloadfpGUI-a54d7ec91e8ac04c70c69ecb3b7cd6f720f35072.tar.xz
added begin..end block to make code more readable.
Diffstat (limited to 'src')
-rw-r--r--src/corelib/fpg_widget.pas2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/fpg_widget.pas b/src/corelib/fpg_widget.pas
index aefe5710..a1536726 100644
--- a/src/corelib/fpg_widget.pas
+++ b/src/corelib/fpg_widget.pas
@@ -1188,6 +1188,7 @@ begin
lasttaborder := High(integer);
for n := 0 to ComponentCount - 1 do
+ begin
if Components[n] is TfpgWidget then
begin
w := TfpgWidget(Components[n]);
@@ -1236,6 +1237,7 @@ begin
end; { case }
end; { if w.Enabled... }
end;
+ end; { if }
end;
procedure TfpgWidget.MsgPaint(var msg: TfpgMessageRec);