summaryrefslogtreecommitdiffstats
path: root/src/mplayerthumbsconfig/mplayerthumbscfg.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-24 19:38:00 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-24 19:38:00 +0200
commit7a6d1b1ae2828661b051fec138c71b11da10a55e (patch)
tree4a584a0691d880bbbf99145b52dedd2bad1f868a /src/mplayerthumbsconfig/mplayerthumbscfg.cpp
parente73730eb7eb7229676b433fee535b0f4d4492cb0 (diff)
downloadmplayerthumbs-7a6d1b1ae2828661b051fec138c71b11da10a55e.tar.gz
mplayerthumbs-7a6d1b1ae2828661b051fec138c71b11da10a55e.zip
Additional KDE3 => TDE conversion
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 );
}