mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 23:40:26 +02:00
make resourcestring dialog now checks for doubles (idents and values)
git-svn-id: trunk@3054 -
This commit is contained in:
parent
c83188fdbb
commit
9400a2b7fe
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user