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
e2079e32
Commit
e2079e32
authored
Feb 23, 2009
by
Roberto Raggi
Browse files
Look at the char at the left of \ or @.
parent
65ff19e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/cpptools/cppcodecompletion.cpp
View file @
e2079e32
...
...
@@ -391,7 +391,7 @@ static int startOfOperator(TextEditor::ITextEditable *editor,
}
else
if
(
ch3
==
QLatin1Char
(
'-'
)
&&
ch2
==
QLatin1Char
(
'>'
)
&&
ch
==
QLatin1Char
(
'*'
))
{
k
=
T_ARROW_STAR
;
start
-=
3
;
}
else
if
(
ch
==
QLatin1Char
(
'@'
)
||
ch
==
QLatin1Char
(
'\\'
))
{
}
else
if
((
ch2
.
isNull
()
||
ch2
.
isSpace
())
&&
(
ch
==
QLatin1Char
(
'@'
)
||
ch
==
QLatin1Char
(
'\\'
))
)
{
k
=
T_DOXY_COMMENT
;
--
start
;
}
...
...
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