From 244da34653efbb3e2d12335969fe444797ca10ec Mon Sep 17 00:00:00 2001 From: Chusslove Illich Date: Mon, 2 Jul 2007 08:49:20 +0000 Subject: Interface modifications to KCmdLineArgs, KAboutData and KComponentData; BIC, SIC. Most of the depending code has been auto-converted to new API. svn path=/trunk/KDE/kdebase/runtime/; revision=682259 --- src/kreadconfig/kreadconfig.cpp | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) (limited to 'src/kreadconfig/kreadconfig.cpp') diff --git a/src/kreadconfig/kreadconfig.cpp b/src/kreadconfig/kreadconfig.cpp index ce8e8137..8e95aeb7 100644 --- a/src/kreadconfig/kreadconfig.cpp +++ b/src/kreadconfig/kreadconfig.cpp @@ -31,31 +31,28 @@ #include #include #include - -static KCmdLineOptions options[] = -{ - { "file ", I18N_NOOP("Use instead of global config"), 0 }, - { "group ", I18N_NOOP("Group to look in"), "KDE" }, - { "key ", I18N_NOOP("Key to look for"), 0 }, - { "default ", I18N_NOOP("Default value"), 0 }, - { "type ", I18N_NOOP("Type of variable"), 0 }, - KCmdLineLastOption -}; int main(int argc, char **argv) { - KAboutData aboutData("kreadconfig", I18N_NOOP("KReadConfig"), + KAboutData aboutData("kreadconfig", 0, ki18n("KReadConfig"), "1.0.1", - I18N_NOOP("Read KConfig entries - for use in shell scripts"), + ki18n("Read KConfig entries - for use in shell scripts"), KAboutData::License_GPL, - "(c) 2001 Red Hat, Inc."); - aboutData.addAuthor("Bernhard Rosenkraenzer", 0, "bero@redhat.com"); + ki18n("(c) 2001 Red Hat, Inc.")); + aboutData.addAuthor(ki18n("Bernhard Rosenkraenzer"), KLocalizedString(), "bero@redhat.com"); KCmdLineArgs::init(argc, argv, &aboutData); + + KCmdLineOptions options; + options.add("file ", ki18n("Use instead of global config")); + options.add("group ", ki18n("Group to look in"), "KDE"); + options.add("key ", ki18n("Key to look for")); + options.add("default ", ki18n("Default value")); + options.add("type ", ki18n("Type of variable")); KCmdLineArgs::addCmdLineOptions(options); KCmdLineArgs *args=KCmdLineArgs::parsedArgs(); - QString group=QString::fromLocal8Bit(args->getOption("group")); - QString key=QString::fromLocal8Bit(args->getOption("key")); - QString file=QString::fromLocal8Bit(args->getOption("file")); + QString group=args->getOption("group"); + QString key=args->getOption("key"); + QString file=args->getOption("file"); QString dflt=args->getOption("default"); QString type=args->getOption("type").toLower(); -- cgit v1.2.1