From e2079e32696be9e8acb230024304d4b0a3924572 Mon Sep 17 00:00:00 2001 From: Roberto Raggi Date: Mon, 23 Feb 2009 17:54:08 +0100 Subject: [PATCH] Look at the char at the left of \ or @. --- src/plugins/cpptools/cppcodecompletion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/cpptools/cppcodecompletion.cpp b/src/plugins/cpptools/cppcodecompletion.cpp index 6f0dc63305c..9ecb0dc1638 100644 --- a/src/plugins/cpptools/cppcodecompletion.cpp +++ b/src/plugins/cpptools/cppcodecompletion.cpp @@ -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; }