summaryrefslogtreecommitdiff
path: root/prototypes
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2009-08-02 16:41:56 +0200
committerGraeme Geldenhuys <graemeg@gmail.com>2009-08-02 16:41:56 +0200
commit985974a2161b6a0ee07a88191c2bb05e43691848 (patch)
treeab439ad27fb0f706083d030fdc92c202e05a6c37 /prototypes
parent30e08f59159f13bed64166e78c7be2ea63f9a233 (diff)
downloadfpGUI-985974a2161b6a0ee07a88191c2bb05e43691848.tar.xz
minor code comments for textedit component.
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
Diffstat (limited to 'prototypes')
-rw-r--r--prototypes/textedit/fpg_textedit.pas5
1 files changed, 4 insertions, 1 deletions
diff --git a/prototypes/textedit/fpg_textedit.pas b/prototypes/textedit/fpg_textedit.pas
index 78b91083..6e2c8094 100644
--- a/prototypes/textedit/fpg_textedit.pas
+++ b/prototypes/textedit/fpg_textedit.pas
@@ -76,7 +76,10 @@ type
FVisLines: Integer;
FVisCols: Integer;
StartNo, EndNo, StartOffs, EndOffs: Integer;
- FSelStartNo, FSelEndNo, FSelStartOffs, FSelEndOffs: Integer;
+ // Selection start and end line number
+ FSelStartNo, FSelEndNo: Integer;
+ // Selection start and end column
+ FSelStartOffs, FSelEndOffs: Integer;
FTabWidth: Integer;
HPos, VPos, XSize, YSize: Integer;
FMaxScrollH: Integer;