summaryrefslogtreecommitdiffstats
path: root/kpacman/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpacman/main.cpp')
-rw-r--r--kpacman/main.cpp18
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();