diff options
author | Jonathan Riddell <jr@jriddell.org> | 2014-01-09 17:44:54 +0000 |
---|---|---|
committer | Jonathan Riddell <jr@jriddell.org> | 2014-01-09 17:44:54 +0000 |
commit | ba26d97e6132a460f7c6c5bf89cfc69977866a73 (patch) | |
tree | 90ed6fdf582996aced410c34e062fa0765f33b92 /src/kconfig_compiler/kconfig_compiler.cpp | |
parent | d761c642adcb076d9a32bf463c5d46a12b940537 (diff) | |
download | kconfig-ba26d97e6132a460f7c6c5bf89cfc69977866a73.tar.gz kconfig-ba26d97e6132a460f7c6c5bf89cfc69977866a73.tar.bz2 |
Further renaming to kconfig_compiler_kf5
Diffstat (limited to 'src/kconfig_compiler/kconfig_compiler.cpp')
-rw-r--r-- | src/kconfig_compiler/kconfig_compiler.cpp | 8 |
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() + '_') : "") |