diff options
Diffstat (limited to 'lib/kross/runner/main.cpp')
-rw-r--r-- | lib/kross/runner/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kross/runner/main.cpp b/lib/kross/runner/main.cpp index 1093a47b..fcff2bb0 100644 --- a/lib/kross/runner/main.cpp +++ b/lib/kross/runner/main.cpp @@ -110,18 +110,18 @@ int main(int argc, char **argv) about.addAuthor("Sebastian Sauer", "Author", "[email protected]"); // Initialize command line args - KCmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::init(argc, argv, &about); // Tell which options are supported and parse them. static KCmdLineOptions options[] = { { "+file", I18N_NOOP("Scriptfile"), 0 }, KCmdLineLastOption }; - KCmdLineArgs::addCmdLineOptions(options); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); // If no options are defined. if(args->count() < 1) { - std::cout << "Syntax: " << KCmdLineArgs::appName() << " scriptfile1 [scriptfile2] [scriptfile3] ..." << std::endl; + std::cout << "Syntax: " << TDECmdLineArgs::appName() << " scriptfile1 [scriptfile2] [scriptfile3] ..." << std::endl; return ERROR_HELP; } |