diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-08-17 20:04:20 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2020-08-17 20:04:20 +0200 |
commit | 2e2a3c5923526e5f0baa0b4b85d32afec6f19805 (patch) | |
tree | 74b2b4ac39c666b8479b91796c57287a7401bed1 /kpacman/main.cpp | |
parent | 503fddb48f2229ecc6ed6930a99c4d740ff979e5 (diff) | |
download | tdepacman-2e2a3c5923526e5f0baa0b4b85d32afec6f19805.tar.gz tdepacman-2e2a3c5923526e5f0baa0b4b85d32afec6f19805.zip |
third step, convert to tdelibs libraries.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'kpacman/main.cpp')
-rw-r--r-- | kpacman/main.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kpacman/main.cpp b/kpacman/main.cpp index 48ebf48..14ac8e0 100644 --- a/kpacman/main.cpp +++ b/kpacman/main.cpp @@ -15,9 +15,9 @@ * * ***************************************************************************/ -#include <kcmdlineargs.h> -#include <kaboutdata.h> -#include <klocale.h> +#include <tdecmdlineargs.h> +#include <tdeaboutdata.h> +#include <tdelocale.h> #include "kpacman.h" @@ -31,7 +31,7 @@ static const char *description = "the last 14 years of her friendship\n" "and Christine Nickel for the 'K' in my life."); -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { 0, 0, 0 } // INSERT YOUR COMMANDLINE OPTIONS HERE @@ -40,14 +40,14 @@ static KCmdLineOptions options[] = int main(int argc, char *argv[]) { - KAboutData aboutData( "kpacman", I18N_NOOP("Kpacman"), - VERSION, description, KAboutData::License_GPL, + TDEAboutData aboutData( "kpacman", I18N_NOOP("Kpacman"), + VERSION, description, TDEAboutData::License_GPL, "(c) 1998-2003, Jörg Thönnissen", 0, 0, "joe@dsite.de"); aboutData.addAuthor("Jörg Thönnissen",0, "joe@dsite.de"); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options. - KApplication app; + TDEApplication app; KpacmanApp *kpacman = new KpacmanApp(); kpacman->show(); |