diff options
-rw-r--r-- | configdialog/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configdialog/main.cpp b/configdialog/main.cpp index 09de452..22ef3f0 100644 --- a/configdialog/main.cpp +++ b/configdialog/main.cpp @@ -53,7 +53,7 @@ class KbfxConfigApplication : public KUniqueApplication virtual int newInstance() { - KCmdLineArgs* KbfxArgs = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs* KbfxArgs = TDECmdLineArgs::parsedArgs(); /* prepare kbfx theme cmdline option given */ if ( KbfxArgs->isSet ( "prepare" ) ) @@ -142,9 +142,9 @@ int main ( int argc, char **argv ) "[email protected]" ); about.addAuthor ( "PhobosK", 0, "[email protected]" ); - KCmdLineArgs::init( argc, argv, &about ); + TDECmdLineArgs::init( argc, argv, &about ); KUniqueApplication::addCmdLineOptions(); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::addCmdLineOptions( options ); if (!KUniqueApplication::start()) return 1; |