diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:31 -0600 |
commit | 9d2f70142a45309d74e8cf6bf3e5e98a2b3c4d5b (patch) | |
tree | 89802499689825cd4494420b40682c8e33e20e01 | |
parent | 4d27580b922c60297173ff122c4b5273cd64f4c1 (diff) | |
download | tderadio-9d2f70142a45309d74e8cf6bf3e5e98a2b3c4d5b.tar.gz tderadio-9d2f70142a45309d74e8cf6bf3e5e98a2b3c4d5b.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r-- | kradio3/convert-presets/convert-presets.cpp | 6 | ||||
-rw-r--r-- | kradio3/src/main.cpp | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kradio3/convert-presets/convert-presets.cpp b/kradio3/convert-presets/convert-presets.cpp index 8ee0d4f..e68033d 100644 --- a/kradio3/convert-presets/convert-presets.cpp +++ b/kradio3/convert-presets/convert-presets.cpp @@ -167,12 +167,12 @@ int main(int argc, char *argv[]) 0); aboutData.addAuthor("Martin Witte", "", "witte@kawo1.rwth-aachen.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. KApplication a (false, false); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); for (int i = 0; i < args->count(); ++i) { const char *x = args->arg(i); diff --git a/kradio3/src/main.cpp b/kradio3/src/main.cpp index 443d6bf..df83842 100644 --- a/kradio3/src/main.cpp +++ b/kradio3/src/main.cpp @@ -44,8 +44,8 @@ int main(int argc, char *argv[]) aboutData.addAuthor("Klas Kalass", I18N_NOOP("Miscellaneous"), "klas.kalass@gmx.de"); aboutData.addAuthor("Frank Schwanz", I18N_NOOP("idea, first basic application"), "schwanz@fh-brandenburg.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. profiler_about.stop(); |