debuggerintf: fixed deprecated

git-svn-id: trunk@47149 -
This commit is contained in:
mattias 2014-12-09 11:31:36 +00:00
parent 37b0944e55
commit 4192c00d01

View File

@ -5483,12 +5483,12 @@ end;
class function TDebuggerIntf.HasExePath: boolean;
begin
Result := true; // most debugger are external and have an exe path
Result := NeedsExePath;
end;
class function TDebuggerIntf.NeedsExePath: boolean;
begin
Result := HasExePath;
Result := true; // most debugger are external and have an exe path
end;
class function TDebuggerIntf.CanExternalDebugSymbolsFile: boolean;