summaryrefslogtreecommitdiffstats
path: root/src/mplayerthumbsconfig/mplayerthumbscfg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mplayerthumbsconfig/mplayerthumbscfg.cpp')
-rw-r--r--src/mplayerthumbsconfig/mplayerthumbscfg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mplayerthumbsconfig/mplayerthumbscfg.cpp b/src/mplayerthumbsconfig/mplayerthumbscfg.cpp
index 56bea69..afd2b82 100644
--- a/src/mplayerthumbsconfig/mplayerthumbscfg.cpp
+++ b/src/mplayerthumbsconfig/mplayerthumbscfg.cpp
@@ -23,14 +23,14 @@
#include <klineedit.h>
#include <kpushbutton.h>
#include <ntqlabel.h>
-#include <klocale.h>
+#include <tdelocale.h>
#include <kstandarddirs.h>
#include <kdebug.h>
#include <ntqtimer.h>
#include <keditlistbox.h>
MPlayerThumbsConfig::MPlayerThumbsConfig(TQWidget *parent, const char *name, MPlayerThumbsCfg *config, DialogType dialogType, int dialogButtons, ButtonCode defaultButton, bool modal)
- : KConfigDialog(parent, name, config, dialogType, dialogButtons, defaultButton, modal)
+ : TDEConfigDialog(parent, name, config, dialogType, dialogButtons, defaultButton, modal)
{
TQVBox *vbox=new TQVBox(0);
vbox->setSpacing( 5);
@@ -58,8 +58,8 @@ MPlayerThumbsConfig::~MPlayerThumbsConfig()
*/
void MPlayerThumbsConfig::autoFindPath()
{
- TQString playerPath=KStandardDirs::findExe("mplayer-bin");
- if(playerPath.isNull() ) playerPath=KStandardDirs::findExe("mplayer");
+ TQString playerPath=TDEStandardDirs::findExe("mplayer-bin");
+ if(playerPath.isNull() ) playerPath=TDEStandardDirs::findExe("mplayer");
kdDebug() << "Trying to set player path to " << playerPath << endl;
kcfg_mplayerbin->setText( playerPath );
}