summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ksystemlog/src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksystemlog/src/main.cpp b/ksystemlog/src/main.cpp
index a89e219..d01edea 100644
--- a/ksystemlog/src/main.cpp
+++ b/ksystemlog/src/main.cpp
@@ -54,8 +54,8 @@ int main(int argc, char **argv) {
about.addCredit("Patrick Decker", I18N_NOOP("Ideas, Code improvements" ), "[email protected]" );
//about.addCredit(I18N_NOOP("French trains between Paris and Rouen"), I18N_NOOP("Often late, so I have time to improve KSystemLog ;-)" ), "[email protected]" );
- KCmdLineArgs::init(argc, argv, &about);
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::init(argc, argv, &about);
+ TDECmdLineArgs::addCmdLineOptions(options);
KApplication app;
//Register ourselves as a DCOP client
@@ -67,7 +67,7 @@ int main(int argc, char **argv) {
}
else {
//No session... Just start up normally
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if (args->count() == 0) {
KSystemLog *widget = new KSystemLog();
widget->show();