forked from qt-creator/qt-creator
Don't try to jump to unresolved included files
It popped up an error saying the file couldn't be found. Better not show a link at all.
This commit is contained in:
@@ -34,6 +34,7 @@
|
||||
#include "Macro.h"
|
||||
|
||||
#include <QByteArray>
|
||||
#include <QFileInfo>
|
||||
#include <QList>
|
||||
#include <QMap>
|
||||
#include <QSharedPointer>
|
||||
@@ -199,6 +200,9 @@ public:
|
||||
|
||||
unsigned line() const
|
||||
{ return _line; }
|
||||
|
||||
bool resolved() const
|
||||
{ return QFileInfo(_fileName).isAbsolute(); }
|
||||
};
|
||||
|
||||
class MacroUse: public Block {
|
||||
|
||||
@@ -605,7 +605,7 @@ CPPEditor::Link CPPEditor::findLinkAt(const QTextCursor &cursor,
|
||||
// Handle include directives
|
||||
const unsigned lineno = cursor.blockNumber() + 1;
|
||||
foreach (const Document::Include &incl, doc->includes()) {
|
||||
if (incl.line() == lineno) {
|
||||
if (incl.line() == lineno && incl.resolved()) {
|
||||
link.fileName = incl.fileName();
|
||||
link.pos = cursor.block().position();
|
||||
link.length = cursor.block().length();
|
||||
|
||||
Reference in New Issue
Block a user