forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/3.0'
Conflicts: qtcreator.pri qtcreator.qbs src/plugins/git/gitplugin.cpp src/plugins/qt4projectmanager/qmakeproject.cpp Change-Id: Icbd485214b1add7869233dfe0dd9c6a76bddfc7d
This commit is contained in:
@@ -66,6 +66,7 @@
|
||||
#include <QDebug>
|
||||
#include <QTimer>
|
||||
#include <QFileInfo>
|
||||
#include <QDir>
|
||||
|
||||
#include <QMessageBox>
|
||||
|
||||
@@ -534,7 +535,7 @@ void DebuggerEngine::gotoLocation(const Location &loc)
|
||||
// return;
|
||||
|
||||
|
||||
const QString file = loc.fileName();
|
||||
const QString file = QDir::cleanPath(loc.fileName());
|
||||
const int line = loc.lineNumber();
|
||||
bool newEditor = false;
|
||||
IEditor *editor = EditorManager::openEditor(file, Id(),
|
||||
|
||||
Reference in New Issue
Block a user