Skip to content
Snippets Groups Projects
Commit 25694735 authored by Christian Kamm's avatar Christian Kamm
Browse files

C++ indenter: Fix reindenting 'Q_SIGNALS:'.

Change-Id: Ieb2a7673e99dec06d925263f48b39c0c3a4d2fa1
Reviewed-on: http://codereview.qt.nokia.com/108


Reviewed-by: default avatarQt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: default avatarRoberto Raggi <roberto.raggi@nokia.com>
parent 8a8b371e
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,8 @@ static bool colonIsElectric(const QString &text)
|| text.contains(QLatin1String("public"))
|| text.contains(QLatin1String("private"))
|| text.contains(QLatin1String("protected"))
|| text.contains(QLatin1String("signals"))) {
|| text.contains(QLatin1String("signals"))
|| text.contains(QLatin1String("Q_SIGNALS"))) {
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment