diff options
Diffstat (limited to 'kturtle')
-rw-r--r-- | kturtle/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kturtle/src/main.cpp b/kturtle/src/main.cpp index d9bf7eab..d5810c6b 100644 --- a/kturtle/src/main.cpp +++ b/kturtle/src/main.cpp @@ -87,8 +87,8 @@ int main(int argc, char **argv) about.addCredit("Albert Astals Cid", I18N_NOOP("Parser Cyrillic support"), "astals11 # terra.es"); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; MainWindow *mainwindow = 0; @@ -99,7 +99,7 @@ int main(int argc, char **argv) else { // no session... just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); /// @todo do something with the command line args here |