cody: fixed opening lpr file, bug #30787

git-svn-id: trunk@53207 -
This commit is contained in:
mattias 2016-10-25 20:23:37 +00:00
parent a152fd580f
commit 98e64cab9d

View File

@ -396,7 +396,7 @@ var
begin
if not IsApplicable(Msg,Identifier) then exit;
if LazarusIDE.DoOpenFileAndJumpToPos(Msg.GetFullFilename,
Point(Msg.Column,Msg.Line),-1,-1,-1,[])<>mrOk then exit;
Point(Msg.Column,Msg.Line),-1,-1,-1,[ofOnlyIfExists,ofRegularFile])<>mrOk then exit;
ShowUnitDictionaryDialog(nil);
end;