diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:48 -0600 |
commit | 545d48dc2acbfb766a1c277b6f82ae54eea3754f (patch) | |
tree | 7b300309ee263157d3c34fd46d387cdc159fb14b /kworldwatch | |
parent | 7adc7115528101c579c41266a2388a37e3b1c04c (diff) | |
download | tdetoys-545d48dc2acbfb766a1c277b6f82ae54eea3754f.tar.gz tdetoys-545d48dc2acbfb766a1c277b6f82ae54eea3754f.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kworldwatch')
-rw-r--r-- | kworldwatch/main.cpp | 10 | ||||
-rw-r--r-- | kworldwatch/mapwidget.cpp | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/kworldwatch/main.cpp b/kworldwatch/main.cpp index c301b56..03d2f2c 100644 --- a/kworldwatch/main.cpp +++ b/kworldwatch/main.cpp @@ -105,7 +105,7 @@ void WatchApplication::dumpMap() // guess some default parameters TQSize mapSize(kapp->desktop()->size()); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); TQCString themeName = args->getOption("theme"); TQCString outName = args->getOption("o"); @@ -136,7 +136,7 @@ void WatchApplication::dumpMap() int WatchApplication::newInstance() { // dump mode, used for background drawing - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("dump")) { dumpMap(); @@ -176,11 +176,11 @@ static KCmdLineOptions options[] = int main(int argc, char *argv[]) { KAboutData about("kworldclock", I18N_NOOP("TDE World Clock"), "1.5"); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions(options); KUniqueApplication::addCmdLineOptions(); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("themes")) { KInstance app(&about); diff --git a/kworldwatch/mapwidget.cpp b/kworldwatch/mapwidget.cpp index 75141b3..7dc10e2 100644 --- a/kworldwatch/mapwidget.cpp +++ b/kworldwatch/mapwidget.cpp @@ -179,7 +179,7 @@ void MapWidget::load(KConfig *config) if ( !_applet ) { - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("theme")) setTheme(TQString::fromLocal8Bit(args->getOption("theme"))); else |