summaryrefslogtreecommitdiffstats
path: root/kioslave/audiocd/plugins/audiocdencoder.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:35:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:35:36 -0600
commitde9a6aa007626eba4e333ac4080cbdfcb9f98386 (patch)
tree79166818db79c0ac7acfbbb545a4929c0cd62b04 /kioslave/audiocd/plugins/audiocdencoder.h
parent27430f06c6cc2187c639f59f342f07f1fde91a8b (diff)
downloadtdemultimedia-de9a6aa007626eba4e333ac4080cbdfcb9f98386.tar.gz
tdemultimedia-de9a6aa007626eba4e333ac4080cbdfcb9f98386.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/audiocd/plugins/audiocdencoder.h')
-rw-r--r--kioslave/audiocd/plugins/audiocdencoder.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kioslave/audiocd/plugins/audiocdencoder.h b/kioslave/audiocd/plugins/audiocdencoder.h
index 0e8d3144..d582d548 100644
--- a/kioslave/audiocd/plugins/audiocdencoder.h
+++ b/kioslave/audiocd/plugins/audiocdencoder.h
@@ -23,7 +23,7 @@
#include <kio/slavebase.h>
#include <cdinfo.h>
-class KConfigSkeleton;
+class TDEConfigSkeleton;
using namespace KCDDB;
class AudioCDEncoder {
@@ -34,7 +34,7 @@ public:
* @param slave parent that this classes can use to call data() with
* when finished encoding bits.
*/
- explicit AudioCDEncoder(KIO::SlaveBase *slave) : ioslave(slave) {};
+ explicit AudioCDEncoder(TDEIO::SlaveBase *slave) : ioslave(slave) {};
/**
* Deconstructor.
@@ -114,7 +114,7 @@ public:
/**
* Returns a configure widget for the encoder
*/
- virtual TQWidget* getConfigureWidget(KConfigSkeleton** manager) const
+ virtual TQWidget* getConfigureWidget(TDEConfigSkeleton** manager) const
{ Q_UNUSED(manager); return NULL; };
/**
@@ -130,14 +130,14 @@ public:
* @param slave ioslave needed if the plugin is going to be used to encode something.
* @param encoders container for new encoders.
*/
- static void findAllPlugins(KIO::SlaveBase *slave, TQPtrList<AudioCDEncoder> &encoders);
+ static void findAllPlugins(TDEIO::SlaveBase *slave, TQPtrList<AudioCDEncoder> &encoders);
protected:
/**
* Pointer to the ioslave that is running this encoder.
* Used (only?) for the data() function to pass back encoded data.
*/
- KIO::SlaveBase *ioslave;
+ TDEIO::SlaveBase *ioslave;
};