diff options
Diffstat (limited to 'kioslave/audiocd/plugins/audiocdencoder.h')
-rw-r--r-- | kioslave/audiocd/plugins/audiocdencoder.h | 10 |
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; }; |