aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp
diff options
context:
space:
mode:
authorAnton Kudryavtsev <a.kudryavtsev@netris.ru>2016-01-18 18:06:37 +0300
committerAnton Kudryavtsev <a.kudryavtsev@netris.ru>2016-02-10 11:17:48 +0000
commit6c152bf27f94f01b2942b02e370df4fa01e0d40f (patch)
tree0bacc76c3e0e06c4c874d120b712f09c5dc75ffb /src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp
parent71888aa3a4fa564dae17f00be6a04b34a19db862 (diff)
Quick: replace QStringLiteral with QLatin1String
... in string comparisons. It's more efficient. Change-Id: I51b4f5dd79ddb8a448e59ebfc537b86b78730dfb Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp')
-rw-r--r--src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp b/src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp
index 1112eca27b..97d7e69407 100644
--- a/src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp
+++ b/src/quick/scenegraph/coreapi/qsgshaderrewriter.cpp
@@ -274,7 +274,7 @@ int main(int argc, char **argv)
for (int i=0; i<args.length(); ++i) {
const QString &a = args.at(i);
- if (a == QStringLiteral("--file") && i < args.length() - 1) {
+ if (a == QLatin1String("--file") && i < args.length() - 1) {
qDebug() << "Reading file: " << args.at(i);
QFile file(args.at(++i));
if (!file.open(QFile::ReadOnly)) {
@@ -282,10 +282,10 @@ int main(int argc, char **argv)
return 1;
}
content = file.readAll();
- } else if (a == QStringLiteral("--selftest")) {
+ } else if (a == QLatin1String("--selftest")) {
qDebug() << "doing a selftest";
content = QByteArray(selftest);
- } else if (a == QStringLiteral("--help") || a == QStringLiteral("-h")) {
+ } else if (a == QLatin1String("--help") || a == QLatin1String("-h")) {
qDebug() << "usage:" << endl
<< " --file [name] A vertex shader file to rewrite" << endl;
}