diff options
author | Darrell Anderson <[email protected]> | 2013-05-17 12:45:40 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2013-05-17 12:45:40 -0500 |
commit | 359294c33620c8328d61f67635046d7cc060530c (patch) | |
tree | f2ac08fdad8860f7bc1ac76203e31013a799fda7 /kdelirc/irkick/main.cpp | |
parent | 7be7990fc5770d2cbcd937772e8239167b5900c6 (diff) | |
download | tdeutils-359294c33620c8328d61f67635046d7cc060530c.tar.gz tdeutils-359294c33620c8328d61f67635046d7cc060530c.zip |
Rename kdessh -> tdessh and kdelirc -> tdelirc.
Diffstat (limited to 'kdelirc/irkick/main.cpp')
-rw-r--r-- | kdelirc/irkick/main.cpp | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/kdelirc/irkick/main.cpp b/kdelirc/irkick/main.cpp deleted file mode 100644 index aa9d697..0000000 --- a/kdelirc/irkick/main.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/*************************************************************************** - main.cpp - Implementation of the main window - ------------------- - copyright : (C) 2002 by Gav Wood - email : [email protected] -***************************************************************************/ - -// This program is free software. - -#include <tdelocale.h> -#include <tdecmdlineargs.h> -#include <twin.h> -#include <tdeaboutdata.h> -#include <tdeglobal.h> -#include <kdebug.h> -#include <kuniqueapplication.h> - -#include "irkick.h" - -extern "C" KDE_EXPORT int kdemain(int argc, char *argv[]) -{ - TDEAboutData *aboutData = new TDEAboutData("irkick", I18N_NOOP("IRKick"), VERSION, I18N_NOOP("The TDE Infrared Remote Control Server"), TDEAboutData::License_GPL, "(c) 2003, Gav Wood", 0, 0, "[email protected]"); - aboutData->addAuthor("Gav Wood", I18N_NOOP("Author"), "[email protected]", "http://www.indigoarchive.net/gav/"); - aboutData->addCredit("Malte Starostik", I18N_NOOP("Original LIRC interface code"), "[email protected]"); - aboutData->addCredit("Dirk Ziegelmeier", I18N_NOOP("Ideas, concept code"), "[email protected]"); - aboutData->addCredit("Zsolt Rizsanyi", I18N_NOOP("Random patches"), "[email protected]"); - aboutData->addCredit("Antonio Larrosa Jiménez", I18N_NOOP("Ideas"), "[email protected]"); - - TDECmdLineArgs::init( argc, argv, aboutData ); - KUniqueApplication::addCmdLineOptions(); - KUniqueApplication app; - TDEGlobal::locale()->insertCatalogue( "kdelirc" ); - app.disableSessionManagement(); - IRKick *theIRKick = new IRKick("IRKick"); - - int ret = app.exec(); - delete theIRKick; - return ret; -} |