summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/dumpcpp/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dumpcpp/main.cpp b/tools/dumpcpp/main.cpp
index 8a37f33..60a1d56 100644
--- a/tools/dumpcpp/main.cpp
+++ b/tools/dumpcpp/main.cpp
@@ -198,7 +198,7 @@ void generateClassDecl(QTextStream &out, const QString &controlID, const QMetaOb
out << " if (licenseKey.isEmpty())" << endl;
out << " setControl(QStringLiteral(\"" << controlID << "\"));" << endl;
out << " else" << endl;
- out << " setControl(QStringLiteral(\"" << controlID << ":\" + licenseKey));" << endl;
+ out << " setControl(QStringLiteral(\"" << controlID << ":\") + licenseKey);" << endl;
} else {
out << " setControl(QStringLiteral(\"" << controlID << "\"));" << endl;
}