summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--tools/xmlpatterns/qapplicationargumentparser.cpp12
2 files changed, 7 insertions, 7 deletions
diff --git a/.qmake.conf b/.qmake.conf
index a8a7769..a93cfcc 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -2,4 +2,4 @@ load(qt_build_config)
CONFIG += warning_clean
DEFINES += QT_NO_FOREACH
-MODULE_VERSION = 5.14.0
+MODULE_VERSION = 6.0.0
diff --git a/tools/xmlpatterns/qapplicationargumentparser.cpp b/tools/xmlpatterns/qapplicationargumentparser.cpp
index 8aaae31..ce73485 100644
--- a/tools/xmlpatterns/qapplicationargumentparser.cpp
+++ b/tools/xmlpatterns/qapplicationargumentparser.cpp
@@ -245,7 +245,7 @@ bool QApplicationArgumentParserPrivate::error(const QString &message)
bool QApplicationArgumentParserPrivate::errorMessage(const QString &message)
{
QTextStream out(stderr, QIODevice::WriteOnly);
- out << message << endl;
+ out << message << Qt::endl;
return false;
}
@@ -290,7 +290,7 @@ void QApplicationArgumentParserPrivate::displayVersion() const
QTextStream out(stderr);
out << tr("%1 version %2 using Qt %3").arg(QCoreApplication::applicationName(), applicationVersion, QString::fromLatin1(qVersion()))
- << endl;
+ << Qt::endl;
}
void QApplicationArgumentParserPrivate::displayHelp() const
@@ -356,16 +356,16 @@ void QApplicationArgumentParserPrivate::displayHelp() const
}
QTextStream out(stderr);
- out << endl
+ out << Qt::endl
<< QString(IndentPadding, QLatin1Char(' '))
<< QCoreApplication::applicationName()
<< QLatin1String(" -- ")
<< applicationDescription
- << endl;
+ << Qt::endl;
// TODO synopsis
/* One extra so we get some space between the overview and the options. */
- out << endl;
+ out << Qt::endl;
const int indentWidth = maxWidth + 3;
@@ -408,7 +408,7 @@ void QApplicationArgumentParserPrivate::displayHelp() const
out << prolog
<< lineWrap(at.description(), indentWidth, LineWrapAt)
- << endl;
+ << Qt::endl;
}
}