summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2016-01-03 13:00:13 -0200
committerThiago Macieira <thiago.macieira@intel.com>2016-01-30 07:38:15 +0000
commit157445e64a277098b309b2bdfeda769f443b659d (patch)
tree2d67b8f3c25cec2501d368bd954337607f917956 /src/tools
parentf576f438bf665f3c73b135be589fb30da404cde3 (diff)
Fix GCC 6 valid warnings about misleading indendations
It's currently producing a lot of false positives, but a few are actually valid. See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69029, https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69122 and some others. Change-Id: I24a735698d3c4a719fc9ffff1425f29d7b5a3458 Reviewed-by: Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/uic/uic.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/uic/uic.cpp b/src/tools/uic/uic.cpp
index b72864a157..c300f3ab9c 100644
--- a/src/tools/uic/uic.cpp
+++ b/src/tools/uic/uic.cpp
@@ -122,13 +122,13 @@ void Uic::writeCopyrightHeader(DomUI *ui)
if (comment.size())
out << "/*\n" << comment << "\n*/\n\n";
- out << "/********************************************************************************\n";
- out << "** Form generated from reading UI file '" << QFileInfo(opt.inputFile).fileName() << "'\n";
- out << "**\n";
- out << "** Created by: Qt User Interface Compiler version " << QLatin1String(QT_VERSION_STR) << "\n";
- out << "**\n";
- out << "** WARNING! All changes made in this file will be lost when recompiling UI file!\n";
- out << "********************************************************************************/\n\n";
+ out << "/********************************************************************************\n";
+ out << "** Form generated from reading UI file '" << QFileInfo(opt.inputFile).fileName() << "'\n";
+ out << "**\n";
+ out << "** Created by: Qt User Interface Compiler version " << QLatin1String(QT_VERSION_STR) << "\n";
+ out << "**\n";
+ out << "** WARNING! All changes made in this file will be lost when recompiling UI file!\n";
+ out << "********************************************************************************/\n\n";
}
// Check the version with a stream reader at the <ui> element.