summaryrefslogtreecommitdiffstats
path: root/karm/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'karm/main.cpp')
-rw-r--r--karm/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/karm/main.cpp b/karm/main.cpp
index bc8183bb..e8ebc7e1 100644
--- a/karm/main.cpp
+++ b/karm/main.cpp
@@ -47,11 +47,11 @@ int main( int argc, char *argv[] )
aboutData.addAuthor( "Tomas Pospisek", 0, "tpo_deb@sourcepole.ch" );
aboutData.addAuthor( "Willi Richert", 0, "w.richert@gmx.net" );
- KCmdLineArgs::init( argc, argv, &aboutData );
- KCmdLineArgs::addCmdLineOptions( options );
+ TDECmdLineArgs::init( argc, argv, &aboutData );
+ TDECmdLineArgs::addCmdLineOptions( options );
KApplication myApp;
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
MainWindow *mainWindow;
if ( args->count() > 0 )
@@ -68,7 +68,7 @@ int main( int argc, char *argv[] )
}
else
{
- icsfile = KCmdLineArgs::cwd() + "/" + icsfile;
+ icsfile = TDECmdLineArgs::cwd() + "/" + icsfile;
}
mainWindow = new MainWindow( icsfile );
}