diff options
Diffstat (limited to 'src/app/main.cpp')
-rw-r--r-- | src/app/main.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp index 7c0f6fc..a024d5d 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -2,21 +2,21 @@ // See COPYING file for licensing information #include "codeine.h" -#include <kaboutdata.h> -#include <kapplication.h> -#include <kcmdlineargs.h> +#include <tdeaboutdata.h> +#include <tdeapplication.h> +#include <tdecmdlineargs.h> #include "mainWindow.h" #include <X11/Xlib.h> -static KAboutData aboutData( APP_NAME, +static TDEAboutData aboutData( APP_NAME, I18N_NOOP(PRETTY_NAME), APP_VERSION, - I18N_NOOP("A video player that has a usability focus"), KAboutData::License_GPL_V2, + I18N_NOOP("A video player that has a usability focus"), TDEAboutData::License_GPL_V2, I18N_NOOP("Copyright 2006, Max Howell"), 0, "http://www.methylblue.com/codeine/", "[email protected]" ); -static const KCmdLineOptions options[] = { +static const TDECmdLineOptions options[] = { { "+[URL]", I18N_NOOP( "Play 'URL'" ), 0 }, { "play-dvd", I18N_NOOP( "Play DVD Video" ), 0 }, { 0, 0, 0 } }; @@ -35,10 +35,10 @@ main( int argc, char **argv ) aboutData.addCredit( "Ian Monroe", I18N_NOOP("Patches, advice and moral support") ); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); - KApplication application; + TDEApplication application; int returnValue; { |