forked from qt-creator/qt-creator
Debugger: make Location::fileName a Utils::FilePath
Change-Id: I637d39246ff576db1023f08c432a7f7b6aadbbaa Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -916,7 +916,7 @@ void CdbEngine::handleJumpToLineAddressResolution(const DebuggerResponse &respon
|
||||
const quint64 address = answer.toULongLong(&ok, 16);
|
||||
if (ok && address) {
|
||||
jumpToAddress(address);
|
||||
gotoLocation(Location(context.fileName.toString(), context.lineNumber));
|
||||
gotoLocation(Location(context.fileName, context.lineNumber));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user