summaryrefslogtreecommitdiffstats
path: root/src/kmplayerconfig.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-25 00:08:09 -0600
committerTimothy Pearson <[email protected]>2013-01-25 00:08:09 -0600
commit75cf20e5d10de7b6ab506bd1ad6321c77ff1ad5c (patch)
treeeee3e440800d8fe8d3989b919dd349401cd37282 /src/kmplayerconfig.h
parenta34aeb25a3006e5a708ec955159226e8b197dc27 (diff)
downloadkmplayer-75cf20e5d10de7b6ab506bd1ad6321c77ff1ad5c.tar.gz
kmplayer-75cf20e5d10de7b6ab506bd1ad6321c77ff1ad5c.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/kmplayerconfig.h')
-rw-r--r--src/kmplayerconfig.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kmplayerconfig.h b/src/kmplayerconfig.h
index 9888a71..2dcb571 100644
--- a/src/kmplayerconfig.h
+++ b/src/kmplayerconfig.h
@@ -29,7 +29,7 @@
#include <kurl.h>
-class KConfig;
+class TDEConfig;
namespace KMPlayer {
@@ -82,8 +82,8 @@ struct Deleter {
class KMPLAYER_EXPORT PreferencesPage {
public:
virtual ~PreferencesPage () {}
- virtual void write (KConfig *) = 0;
- virtual void read (KConfig *) = 0;
+ virtual void write (TDEConfig *) = 0;
+ virtual void read (TDEConfig *) = 0;
virtual void sync (bool fromUI) = 0;
virtual void prefLocation (TQString & item, TQString & icon, TQString & tab) = 0;
virtual TQFrame * prefPage (TQWidget * parent) = 0;
@@ -97,7 +97,7 @@ class KMPLAYER_EXPORT Settings : public TQObject {
Q_OBJECT
public:
- Settings (PartBase *, KConfig * part);
+ Settings (PartBase *, TDEConfig * part);
~Settings ();
bool createDialog () KDE_NO_EXPORT;
void show (const char * pagename = 0L);
@@ -106,7 +106,7 @@ public:
void applyColorSetting (bool only_changed_ones);
Preferences *configDialog() const { return configdialog; }
View * defaultView ();
- KConfig * kconfig () { return m_config; }
+ TDEConfig * kconfig () { return m_config; }
TQStringList urllist;
TQStringList sub_urllist;
@@ -196,7 +196,7 @@ private slots:
void getHelp ();
private:
Preferences * configdialog;
- KConfig * m_config;
+ TDEConfig * m_config;
PartBase * m_player;
};