diff options
-rw-r--r-- | ksquirrel/ksquirrel-libs-configurator/main.cpp | 4 | ||||
-rw-r--r-- | ksquirrel/main.cpp | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ksquirrel/ksquirrel-libs-configurator/main.cpp b/ksquirrel/ksquirrel-libs-configurator/main.cpp index 67c5cdd..82e8ebf 100644 --- a/ksquirrel/ksquirrel-libs-configurator/main.cpp +++ b/ksquirrel/ksquirrel-libs-configurator/main.cpp @@ -43,8 +43,8 @@ int main(int argc, char *argv[]) "http://ksquirrel.sourceforge.net", - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; diff --git a/ksquirrel/main.cpp b/ksquirrel/main.cpp index 8a7007c..e2b3073 100644 --- a/ksquirrel/main.cpp +++ b/ksquirrel/main.cpp @@ -84,9 +84,9 @@ int main(int argc, char *argv[]) aboutData.addCredit(I18N_NOOP("GameDev forum at"), 0, 0, "http://gamedev.ru"); // parse command line - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions(options); - KCmdLineArgs *sq_args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs *sq_args = TDECmdLineArgs::parsedArgs(); //create high level options high = new SQ_HLOptions; |