aboutsummaryrefslogtreecommitdiff
path: root/src/kconfig_compiler/kconfig_compiler.cpp
diff options
context:
space:
mode:
authorJonathan Riddell <jr@jriddell.org>2014-01-09 17:44:54 +0000
committerJonathan Riddell <jr@jriddell.org>2014-01-09 17:44:54 +0000
commitba26d97e6132a460f7c6c5bf89cfc69977866a73 (patch)
tree90ed6fdf582996aced410c34e062fa0765f33b92 /src/kconfig_compiler/kconfig_compiler.cpp
parentd761c642adcb076d9a32bf463c5d46a12b940537 (diff)
downloadkconfig-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.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() + '_') : "")