aboutsummaryrefslogtreecommitdiff
path: root/src/kconfig_compiler/kconfig_compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kconfig_compiler/kconfig_compiler.cpp')
-rw-r--r--src/kconfig_compiler/kconfig_compiler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kconfig_compiler/kconfig_compiler.cpp b/src/kconfig_compiler/kconfig_compiler.cpp
index bdbd03c3..1c8d1bc2 100644
--- a/src/kconfig_compiler/kconfig_compiler.cpp
+++ b/src/kconfig_compiler/kconfig_compiler.cpp
@@ -1073,7 +1073,7 @@ QString param(const QString &t)
} else if (type == "urllist") {
return "const QList<QUrl> &";
} else {
- cerr << "kconfig_compiler does not support type \"" << type << "\"" << endl;
+ cerr << "kconfig_compiler_kf5 does not support type \"" << type << "\"" << endl;
return "QString"; //For now, but an assert would be better
}
}
@@ -1127,7 +1127,7 @@ QString cppType(const QString &t)
} else if (type == "urllist") {
return "QList<QUrl>";
} else {
- cerr << "kconfig_compiler does not support type \"" << type << "\"" << endl;
+ cerr << "kconfig_compiler_kf5 does not support type \"" << type << "\"" << endl;
return "QString"; //For now, but an assert would be better
}
}
@@ -1178,7 +1178,7 @@ QString defaultValue(const QString &t)
} else if (type == "urllist") {
return "QList<QUrl>()";
} else {
- cerr << "Error, kconfig_compiler does not support the \"" << type << "\" type!" << endl;
+ cerr << "Error, kconfig_compiler_kf5 does not support the \"" << type << "\" type!" << endl;
return "QString"; //For now, but an assert would be better
}
}
@@ -1705,7 +1705,7 @@ int main(int argc, char **argv)
QTextStream h(&header);
- h << "// This file is generated by kconfig_compiler from " << QFileInfo(inputFilename).fileName() << "." << endl;
+ h << "// This file is generated by kconfig_compiler_kf5 from " << QFileInfo(inputFilename).fileName() << "." << endl;
h << "// All changes you do to this file will be lost." << endl;
h << "#ifndef " << (!cfg.nameSpace.isEmpty() ? QString(QString(cfg.nameSpace).replace("::", "_").toUpper() + '_') : "")