diff options
Diffstat (limited to 'kreadconfig')
-rw-r--r-- | kreadconfig/kreadconfig.cpp | 4 | ||||
-rw-r--r-- | kreadconfig/kwriteconfig.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kreadconfig/kreadconfig.cpp b/kreadconfig/kreadconfig.cpp index f0b0c22dd..398b8fe54 100644 --- a/kreadconfig/kreadconfig.cpp +++ b/kreadconfig/kreadconfig.cpp @@ -32,14 +32,14 @@ #include <kaboutdata.h> #include <stdio.h> -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "file <file>", I18N_NOOP("Use <file> instead of global config"), 0 }, { "group <group>", I18N_NOOP("Group to look in"), "TDE" }, { "key <key>", I18N_NOOP("Key to look for"), 0 }, { "default <default>", I18N_NOOP("Default value"), 0 }, { "type <type>", I18N_NOOP("Type of variable"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; int main(int argc, char **argv) { diff --git a/kreadconfig/kwriteconfig.cpp b/kreadconfig/kwriteconfig.cpp index d554483bc..381589ad0 100644 --- a/kreadconfig/kwriteconfig.cpp +++ b/kreadconfig/kwriteconfig.cpp @@ -14,14 +14,14 @@ #include <kaboutdata.h> #include <stdio.h> -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "file <file>", I18N_NOOP("Use <file> instead of global config"), 0 }, { "group <group>", I18N_NOOP("Group to look in"), "TDE" }, { "key <key>", I18N_NOOP("Key to look for"), 0 }, { "type <type>", I18N_NOOP("Type of variable. Use \"bool\" for a boolean, otherwise it is treated as a string"), 0 }, { "+value", I18N_NOOP( "The value to write. Mandatory, on a shell use '' for empty" ), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; int main(int argc, char **argv) { |