diff options
author | Timothy Pearson <[email protected]> | 2013-02-06 19:42:47 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-06 19:42:47 -0600 |
commit | 05318b1e0c2cff1520c018f5431f87a5da4b89ac (patch) | |
tree | 1488574921f93312917d8d7d6783cd8ad8ad4d23 | |
parent | aa87a56c504226f7bffcaca7856febb2af9a3a78 (diff) | |
download | tdeaccessibility-05318b1e0c2cff1520c018f5431f87a5da4b89ac.tar.gz tdeaccessibility-05318b1e0c2cff1520c018f5431f87a5da4b89ac.zip |
Rename KCmd to avoid conflicts with KDE4
-rw-r--r-- | kmag/main.cpp | 4 | ||||
-rw-r--r-- | kmousetool/kmousetool/main.cpp | 4 | ||||
-rw-r--r-- | kmouth/main.cpp | 4 | ||||
-rw-r--r-- | kttsd/filters/main.cpp | 4 | ||||
-rw-r--r-- | kttsd/kttsmgr/kttsmgr.cpp | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/kmag/main.cpp b/kmag/main.cpp index 72784c1..4cbcbc7 100644 --- a/kmag/main.cpp +++ b/kmag/main.cpp @@ -32,10 +32,10 @@ KmagApp *kmagapp; // INSERT A DESCRIPTION FOR YOUR APPLICATION HERE -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "+[File]", I18N_NOOP("File to open"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption // INSERT YOUR COMMANDLINE OPTIONS HERE }; diff --git a/kmousetool/kmousetool/main.cpp b/kmousetool/kmousetool/main.cpp index c09a0c3..3970f4a 100644 --- a/kmousetool/kmousetool/main.cpp +++ b/kmousetool/kmousetool/main.cpp @@ -33,9 +33,9 @@ static const char description[] = // INSERT A DESCRIPTION FOR YOUR APPLICATION HERE -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { - KCmdLineLastOption + TDECmdLineLastOption // INSERT YOUR COMMANDLINE OPTIONS HERE }; diff --git a/kmouth/main.cpp b/kmouth/main.cpp index 960018d..779de1b 100644 --- a/kmouth/main.cpp +++ b/kmouth/main.cpp @@ -29,10 +29,10 @@ static const char description[] = // INSERT A DESCRIPTION FOR YOUR APPLICATION HERE -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "+[File]", I18N_NOOP("History file to open"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption // INSERT YOUR COMMANDLINE OPTIONS HERE }; diff --git a/kttsd/filters/main.cpp b/kttsd/filters/main.cpp index 5bd9f65..b8d113f 100644 --- a/kttsd/filters/main.cpp +++ b/kttsd/filters/main.cpp @@ -39,7 +39,7 @@ using namespace std; #include "filterproc.h" #include "talkercode.h" -static const KCmdLineOptions options[] = +static const TDECmdLineOptions options[] = { { "+pluginName", I18N_NOOP("Name of a KTTSD filter plugin (required)"), 0 }, { "t", 0, 0 }, @@ -54,7 +54,7 @@ static const KCmdLineOptions options[] = { "b", 0, 0 }, { "break", I18N_NOOP("Display tabs as \\t, otherwise they are removed"), 0 }, { "list", I18N_NOOP("Display list of available filter plugins and exit"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; int main(int argc, char *argv[]) diff --git a/kttsd/kttsmgr/kttsmgr.cpp b/kttsd/kttsmgr/kttsmgr.cpp index 95d4be5..5470275 100644 --- a/kttsd/kttsmgr/kttsmgr.cpp +++ b/kttsd/kttsmgr/kttsmgr.cpp @@ -43,13 +43,13 @@ #include "kspeech.h" #include "kttsmgr.h" -static const KCmdLineOptions options[] = +static const TDECmdLineOptions options[] = { { "s", 0, 0 }, { "systray", I18N_NOOP("Start minimized in system tray"), 0 }, { "a", 0, 0 }, { "autoexit", I18N_NOOP("Exit when speaking is finished and minimized in system tray"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; int main (int argc, char *argv[]) |