diff options
Diffstat (limited to 'lib/kofficecore')
-rw-r--r-- | lib/kofficecore/KoApplication.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kofficecore/KoApplication.cpp b/lib/kofficecore/KoApplication.cpp index b4cfd2c4..5346ff0a 100644 --- a/lib/kofficecore/KoApplication.cpp +++ b/lib/kofficecore/KoApplication.cpp @@ -73,7 +73,7 @@ KoApplication::KoApplication() // This gets called before entering KApplication::KApplication bool KoApplication::initHack() { - KCmdLineArgs::addCmdLineOptions( options, I18N_NOOP("KOffice"), "koffice", "kde" ); + TDECmdLineArgs::addCmdLineOptions( options, I18N_NOOP("KOffice"), "koffice", "kde" ); return true; } @@ -102,10 +102,10 @@ bool KoApplication::start() } // Get the command line arguments which we have to parse - KCmdLineArgs *args= KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args= TDECmdLineArgs::parsedArgs(); int argsCount = args->count(); - KCmdLineArgs *koargs = KCmdLineArgs::parsedArgs("koffice"); + TDECmdLineArgs *koargs = TDECmdLineArgs::parsedArgs("koffice"); TQCString dpiValues = koargs->getOption( "dpi" ); if ( !dpiValues.isEmpty() ) { int sep = dpiValues.find( TQRegExp( "[x, ]" ) ); |