mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-10 02:28:04 +02:00
IDE: Fix function results, for refactor rev 32347 #a23438a510
git-svn-id: trunk@32367 -
This commit is contained in:
parent
5d4ecfb12e
commit
cd46dbb0ae
@ -448,7 +448,7 @@ begin
|
||||
Flags := [jfFocusEditor];
|
||||
if AddJumpPoint then Include(Flags, jfAddJumpPoint);
|
||||
if MarkLine then Include(Flags, jfMarkLine);
|
||||
DoJumpToSourcePosition(Filename, NewX, NewY, NewTopLine, Flags)
|
||||
Result := DoJumpToSourcePosition(Filename, NewX, NewY, NewTopLine, Flags);
|
||||
end;
|
||||
|
||||
function TMainIDEInterface.DoJumpToCodePosition(ActiveSrcEdit: TSourceEditorInterface;
|
||||
@ -460,8 +460,8 @@ begin
|
||||
Flags := [jfFocusEditor];
|
||||
if AddJumpPoint then Include(Flags, jfAddJumpPoint);
|
||||
if MarkLine then Include(Flags, jfMarkLine);
|
||||
DoJumpToCodePosition(ActiveSrcEdit, ActiveUnitInfo, NewSource, NewX, NewY, NewTopLine,
|
||||
Flags)
|
||||
Result := DoJumpToCodePosition(ActiveSrcEdit, ActiveUnitInfo, NewSource, NewX, NewY, NewTopLine,
|
||||
Flags);
|
||||
end;
|
||||
|
||||
class function TMainIDEInterface.GetPrimaryConfigPath: String;
|
||||
|
Loading…
Reference in New Issue
Block a user