diff options
Diffstat (limited to 'ktuberling/main.cpp')
-rw-r--r-- | ktuberling/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ktuberling/main.cpp b/ktuberling/main.cpp index 2b44867a..482902e5 100644 --- a/ktuberling/main.cpp +++ b/ktuberling/main.cpp @@ -36,8 +36,8 @@ int main(int argc, char *argv[]) aboutData.addCredit("Agnieszka Czajkowska", I18N_NOOP("New artwork"), "agnieszka@imagegalaxy.de"); aboutData.addCredit("Bas Willems", I18N_NOOP("New artwork"), "cybersurfer@euronet.nl"); aboutData.addCredit("Roger Larsson", I18N_NOOP("Sounds tuning"), "roger.larsson@norran.net"); - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; KGlobal::locale()->insertCatalogue("libtdegames"); @@ -50,7 +50,7 @@ int main(int argc, char *argv[]) else { toplevel = new TopLevel(); toplevel->show(); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->count()) toplevel->open(args->url(0)); args->clear(); |