summaryrefslogtreecommitdiffstats
path: root/src/mplayerthumbsconfig/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mplayerthumbsconfig/main.cpp')
-rw-r--r--src/mplayerthumbsconfig/main.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mplayerthumbsconfig/main.cpp b/src/mplayerthumbsconfig/main.cpp
index 2d1bc6f..051cf83 100644
--- a/src/mplayerthumbsconfig/main.cpp
+++ b/src/mplayerthumbsconfig/main.cpp
@@ -17,10 +17,10 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-#include <kapplication.h>
-#include <kaboutdata.h>
-#include <kcmdlineargs.h>
-#include <klocale.h>
+#include <tdeapplication.h>
+#include <tdeaboutdata.h>
+#include <tdecmdlineargs.h>
+#include <tdelocale.h>
#include "mplayerthumbscfg.h"
#include "mplayerthumbs.h"
@@ -30,20 +30,20 @@ static const char description[] =
static const char version[] = "0.1";
-static KCmdLineOptions options[] =
+static TDECmdLineOptions options[] =
{
// { "+[URL]", I18N_NOOP( "Document to open" ), 0 },
- KCmdLineLastOption
+ TDECmdLineLastOption
};
int main(int argc, char **argv)
{
- KAboutData about("MPlayerThumbsConfig", I18N_NOOP("MPlayerThumbsConfig"), version, description,
- KAboutData::License_GPL, "(C) 2006 Marco Gulino", 0, 0, "[email protected]");
+ TDEAboutData about("MPlayerThumbsConfig", I18N_NOOP("MPlayerThumbsConfig"), version, description,
+ TDEAboutData::License_GPL, "(C) 2006 Marco Gulino", 0, 0, "[email protected]");
about.addAuthor( "Marco Gulino", 0, "[email protected]" );
- KCmdLineArgs::init(argc, argv, &about);
- KCmdLineArgs::addCmdLineOptions( options );
- KApplication app;
+ TDECmdLineArgs::init(argc, argv, &about);
+ TDECmdLineArgs::addCmdLineOptions( options );
+ TDEApplication app;
MPlayerThumbsConfig *mainWin = 0;
// if (app.isRestored())
@@ -53,7 +53,7 @@ int main(int argc, char **argv)
// else
// {
// no session.. just start up normally
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
/// @todo do something with the command line args here