diff options
Diffstat (limited to 'ktnef/gui/main.cpp')
-rw-r--r-- | ktnef/gui/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ktnef/gui/main.cpp b/ktnef/gui/main.cpp index 0ba04cc1b..27ad32a2d 100644 --- a/ktnef/gui/main.cpp +++ b/ktnef/gui/main.cpp @@ -40,8 +40,8 @@ int main(int argc, char *argv[]) "1.0", description, KAboutData::License_GPL, "(c) 2000, Michael Goffioul"); aboutData.addAuthor("Michael Goffioul",0, "tdeprint@swing.be"); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication::addCmdLineOptions(); KApplication a; @@ -49,7 +49,7 @@ int main(int argc, char *argv[]) a.setMainWidget(tnef); tnef->show(); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->count() > 0) tnef->loadFile(args->arg(0)); |