summaryrefslogtreecommitdiff
path: root/prototypes
diff options
context:
space:
mode:
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;