summaryrefslogtreecommitdiffstats
path: root/kreadconfig
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-06 19:44:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-06 19:44:17 -0600
commit5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd (patch)
treea5eb4cb7c4754e533de65c5adee17d783e426425 /kreadconfig
parent98eb308fc180d9bea71f448b262ab796353ac904 (diff)
downloadtdebase-5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd.tar.gz
tdebase-5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd.zip
Rename KCmd to avoid conflicts with KDE4
Diffstat (limited to 'kreadconfig')
-rw-r--r--kreadconfig/kreadconfig.cpp4
-rw-r--r--kreadconfig/kwriteconfig.cpp4
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)
{