summaryrefslogtreecommitdiffstats
path: root/kicker/proxy/appletproxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker/proxy/appletproxy.cpp')
-rw-r--r--kicker/proxy/appletproxy.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kicker/proxy/appletproxy.cpp b/kicker/proxy/appletproxy.cpp
index e427cbe74..04e81612e 100644
--- a/kicker/proxy/appletproxy.cpp
+++ b/kicker/proxy/appletproxy.cpp
@@ -75,11 +75,11 @@ extern "C" KDE_EXPORT int kdemain( int argc, char ** argv )
,I18N_NOOP("Panel applet 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();
@@ -91,10 +91,10 @@ extern "C" KDE_EXPORT int kdemain( int argc, char ** argv )
AppletProxy proxy(0, "appletproxywidget");
// parse cmdline args
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if ( args->count() == 0 )
- KCmdLineArgs::usage(i18n("No desktop file specified") );
+ TDECmdLineArgs::usage(i18n("No desktop file specified") );
// Perhaps we should use a konsole-like solution here (shell, list of args...)
TQString desktopfile( args->arg(0) );