summaryrefslogtreecommitdiffstats
path: root/kicker/proxy/extensionproxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker/proxy/extensionproxy.cpp')
-rw-r--r--kicker/proxy/extensionproxy.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kicker/proxy/extensionproxy.cpp b/kicker/proxy/extensionproxy.cpp
index 0bce08e91..eab6f4bb4 100644
--- a/kicker/proxy/extensionproxy.cpp
+++ b/kicker/proxy/extensionproxy.cpp
@@ -61,11 +61,11 @@ extern "C" KDE_EXPORT int kdemain( int argc, char ** argv )
,I18N_NOOP("Panel extension proxy")
, KAboutData::License_BSD
, "(c) 2000, The KDE Developers");
- KCmdLineArgs::init(argc, argv, &aboutData );
+ TDECmdLineArgs::init(argc, argv, &aboutData );
aboutData.addAuthor("Matthias Elter",0, "elter@kde.org");
aboutData.addAuthor("Matthias Ettrich",0, "ettrich@kde.org");
KApplication::addCmdLineOptions();
- KCmdLineArgs::addCmdLineOptions(options); // Add our own options.
+ TDECmdLineArgs::addCmdLineOptions(options); // Add our own options.
KApplication a;
a.disableSessionManagement();
@@ -77,11 +77,11 @@ extern "C" KDE_EXPORT int kdemain( int argc, char ** argv )
ExtensionProxy proxy(0, "extensionproxywidget");
// parse cmdline args
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// sanity check
if ( args->count() == 0 )
- KCmdLineArgs::usage(i18n("No desktop file specified") );
+ TDECmdLineArgs::usage(i18n("No desktop file specified") );
// do we have a callback id?
if (args->getOption("callbackid").isNull()) {