Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
aa11eb89
Commit
aa11eb89
authored
Oct 19, 2010
by
Erik Verbruggen
Browse files
Fixed jumping internally-defined symbols ("<configuration>" file).
Reviewed-by: Christian Kamm
parent
5e28dad5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/cppeditor/cppeditor.cpp
View file @
aa11eb89
...
...
@@ -1337,7 +1337,7 @@ CPPEditor::Link CPPEditor::findLinkAt(const QTextCursor &cursor,
}
else
{
// Handle macro uses
const
Document
::
MacroUse
*
use
=
doc
->
findMacroUseAt
(
endOfToken
-
1
);
if
(
use
)
{
if
(
use
&&
use
->
macro
().
fileName
()
!=
QLatin1String
(
"<configuration>"
)
)
{
const
Macro
&
macro
=
use
->
macro
();
link
.
fileName
=
macro
.
fileName
();
link
.
line
=
macro
.
line
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment