summaryrefslogtreecommitdiffstats
path: root/kplayer/kplayerpropertiesdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kplayer/kplayerpropertiesdialog.cpp')
-rw-r--r--kplayer/kplayerpropertiesdialog.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kplayer/kplayerpropertiesdialog.cpp b/kplayer/kplayerpropertiesdialog.cpp
index fc46dfc..ee7014a 100644
--- a/kplayer/kplayerpropertiesdialog.cpp
+++ b/kplayer/kplayerpropertiesdialog.cpp
@@ -13,9 +13,9 @@
* (at your option) any later version. *
***************************************************************************/
-#include <klistview.h>
-#include <klocale.h>
-#include <kmessagebox.h>
+#include <tdelistview.h>
+#include <tdelocale.h>
+#include <tdemessagebox.h>
#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqlabel.h>
@@ -57,7 +57,7 @@ KPlayerPropertiesDialog::KPlayerPropertiesDialog (void)
KPlayerPropertiesDialog::~KPlayerPropertiesDialog (void)
{
- KConfig* config = kPlayerConfig();
+ TDEConfig* config = kPlayerConfig();
config -> setGroup ("Dialog Options");
#ifdef DEBUG_KPLAYER_PROPERTIES_DIALOG
kdDebugTime() << "KPFP " << x() << "x" << y() << " " << width() << "x" << height() << " Hint " << sizeHint().width() << "x" << sizeHint().height() << "\n";
@@ -113,13 +113,13 @@ void KPlayerPropertiesDialog::setup (const KURL& url)
m_advanced = createAdvancedPage (frame, "advanced");
m_advanced -> setup (url);
setHelp ("properties");
- KListView* view = (KListView*) child (0, "KListView");
+ TDEListView* view = (TDEListView*) child (0, "TDEListView");
if ( view )
view -> setMinimumSize (view -> sizeHint());
layout = (TQBoxLayout*) child (0, "TQHBoxLayout");
if ( layout )
layout -> insertSpacing (0, 6);
- KConfig* config = kPlayerConfig();
+ TDEConfig* config = kPlayerConfig();
config -> setGroup ("Dialog Options");
TQString name (config -> readEntry ("Properties Dialog Page"));
if ( ! name.isEmpty() )
@@ -177,7 +177,7 @@ void KPlayerPropertiesDialog::pageAboutToShow (TQWidget* page)
kdDebugTime() << "KPlayerPropertiesDialog::pageAboutToShow\n";
#endif
TQObject* object = page -> child (0, "TQFrame");
- KConfig* config = kPlayerConfig();
+ TDEConfig* config = kPlayerConfig();
config -> setGroup ("Dialog Options");
TQString name;
if ( object )
@@ -2006,8 +2006,8 @@ void KPlayerPropertiesAdvanced::hideKioslave (void)
#ifdef DEBUG_KPLAYER_PROPERTIES_DIALOG
kdDebugTime() << "KPlayerPropertiesAdvanced::hideKioslave\n";
#endif
- l_use_kioslave -> hide();
- c_use_kioslave -> hide();
+ l_use_tdeioslave -> hide();
+ c_use_tdeioslave -> hide();
l_use_temporary_file -> hide();
c_use_temporary_file -> hide();
}
@@ -2161,14 +2161,14 @@ void KPlayerPropertiesItemAdvanced::setupControls (void)
void KPlayerPropertiesItemAdvanced::load (void)
{
- c_use_kioslave -> setCurrentItem (properties() -> useKioslaveOption());
+ c_use_tdeioslave -> setCurrentItem (properties() -> useKioslaveOption());
c_use_temporary_file -> setCurrentItem (properties() -> useTemporaryFileOption());
KPlayerPropertiesTrackAdvanced::load();
}
void KPlayerPropertiesItemAdvanced::save (void)
{
- properties() -> setUseKioslaveOption (c_use_kioslave -> currentItem());
+ properties() -> setUseKioslaveOption (c_use_tdeioslave -> currentItem());
properties() -> setUseTemporaryFileOption (c_use_temporary_file -> currentItem());
KPlayerPropertiesTrackAdvanced::save();
}