diff options
-rw-r--r-- | kdirstat/kdirstatmain.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdirstat/kdirstatmain.cpp b/kdirstat/kdirstatmain.cpp index dd957db..a75c17d 100644 --- a/kdirstat/kdirstatmain.cpp +++ b/kdirstat/kdirstatmain.cpp @@ -76,8 +76,8 @@ int main(int argc, char *argv[]) I18N_NOOP( "for showing that all the work involved with such a project\n" "is really appreciated out there.\n" ) ); - 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 app; @@ -90,7 +90,7 @@ int main(int argc, char *argv[]) KDirStatApp *kdirstat = new KDirStatApp(); kdirstat->show(); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if ( args->count() ) { |