summaryrefslogtreecommitdiff
path: root/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cppeditor/cppdocumentationcommenthelper.cpp')
-rw-r--r--src/plugins/cppeditor/cppdocumentationcommenthelper.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp b/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp
index 65c3dc9769..bb656d1900 100644
--- a/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp
+++ b/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp
@@ -88,10 +88,7 @@ bool isPreviousLineCppStyleComment(const QTextCursor &cursor)
return false;
const QString text = actual.text().trimmed();
- if (text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!")))
- return true;
-
- return false;
+ return text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!"));
}
/// Check if next line is a CppStyle Doxygen Comment
@@ -106,10 +103,7 @@ bool isNextLineCppStyleComment(const QTextCursor &cursor)
return false;
const QString text = actual.text().trimmed();
- if (text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!")))
- return true;
-
- return false;
+ return text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!"));
}
bool isCppStyleContinuation(const QTextCursor& cursor)