diff options
author | gregory guy <[email protected]> | 2020-06-13 16:33:09 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-06-13 16:33:09 +0200 |
commit | 12b478cefdf1789828dbcd677d409cf8bad654ca (patch) | |
tree | e0fd4a3b7a3d5b64ede310493a7b25624807f8b1 /src/app/main.cpp | |
parent | 2c9bc9b806f533df7b8f5349467d0f4be95314a4 (diff) | |
download | codeine-12b478cefdf1789828dbcd677d409cf8bad654ca.tar.gz codeine-12b478cefdf1789828dbcd677d409cf8bad654ca.zip |
Conversion KDE -> TDE environment.
Signed-off-by: gregory guy <[email protected]>
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; { |