make resourcestring dialog now checks for doubles (idents and values)

git-svn-id: trunk@3054 -
This commit is contained in:
mattias 2002-08-18 08:57:21 +00:00
parent c83188fdbb
commit 9400a2b7fe

View File

@ -257,6 +257,8 @@ type
Function GetCaretPosFromCursorPos(CursorPos : TPoint) : TPoint;
procedure CenterCursor;
procedure Activate;
public
// properties
property CodeBuffer: TCodeBuffer read FCodeBuffer write SetCodeBuffer;
@ -1853,6 +1855,12 @@ begin
EditorComponent.TopLine:=NewTopLine;
end;
procedure TSourceEditor.Activate;
begin
if (FSourceNoteBook=nil) then exit;
FSourceNoteBook.SetActiveSE(Self);
end;
Function TSourceEditor.GetWordAtCurrentCaret: String;
var
CaretPos : TPoint;