diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
commit | 7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7 (patch) | |
tree | 89a8149f783b247fc1f2b1508b5a3840f913ecde /kmouth | |
parent | 94d34ce494ae248bfcfc3f4dfd194e6df2fb33dc (diff) | |
download | tdeaccessibility-7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7.tar.gz tdeaccessibility-7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kmouth')
-rw-r--r-- | kmouth/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmouth/main.cpp b/kmouth/main.cpp index 0f9c875..ec7eb78 100644 --- a/kmouth/main.cpp +++ b/kmouth/main.cpp @@ -43,8 +43,8 @@ int main(int argc, char *argv[]) KMOUTH_VERSION, description, KAboutData::License_GPL, "(c) 2002/2003, Gunnar Schmi Dt", 0, "http://www.schmi-dt.de/kmouth/index.en.html", "kmouth@schmi-dt.de"); aboutData.addAuthor("Gunnar Schmi Dt",0, "kmouth@schmi-dt.de"); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options. aboutData.addCredit("Olaf Schmidt", I18N_NOOP("Tips, extended phrase books"), 0, 0); KApplication app; @@ -61,7 +61,7 @@ int main(int argc, char *argv[]) kmouth->show(); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->count()) { |