From 020f860d116bac578478b35bfd96ac977b59e74b Mon Sep 17 00:00:00 2001 From: mattias Date: Fri, 23 Sep 2005 18:41:50 +0000 Subject: [PATCH] added comments git-svn-id: trunk@7801 - --- ideintf/srceditorintf.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ideintf/srceditorintf.pas b/ideintf/srceditorintf.pas index 502f90cf00..9b56ee26f7 100644 --- a/ideintf/srceditorintf.pas +++ b/ideintf/srceditorintf.pas @@ -102,13 +102,13 @@ type property CursorTextXY: TPoint read GetCursorTextXY write SetCursorTextXY; property EditorControl: TWinControl read GetEditorControl;// normally TSynEdit property FileName: string read GetFileName; - property Lines: TStrings read GetLines write SetLines; - property LineText: string read GetLineText write SetLineText; + property Lines: TStrings read GetLines write SetLines;// the whole file + property LineText: string read GetLineText write SetLineText;// source of current line property ReadOnly: Boolean read GetReadOnly write SetReadOnly; property SelEnd: Integer read GetSelEnd write SetSelEnd; property SelStart: Integer read GetSelStart write SetSelStart; - property SourceText: string read GetSourceText write SetSourceText; - property TopLine: Integer read GetTopLine write SetTopLine; + property SourceText: string read GetSourceText write SetSourceText;// the whole file + property TopLine: Integer read GetTopLine write SetTopLine;// first visible line property Selection: string read GetSelection write SetSelection; end;