summaryrefslogtreecommitdiffstats
path: root/kioslave/audiocd/plugins/flac
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/audiocd/plugins/flac')
-rw-r--r--kioslave/audiocd/plugins/flac/encoderflac.cpp6
-rw-r--r--kioslave/audiocd/plugins/flac/encoderflac.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/kioslave/audiocd/plugins/flac/encoderflac.cpp b/kioslave/audiocd/plugins/flac/encoderflac.cpp
index c208e659..4c1329cd 100644
--- a/kioslave/audiocd/plugins/flac/encoderflac.cpp
+++ b/kioslave/audiocd/plugins/flac/encoderflac.cpp
@@ -37,7 +37,7 @@
extern "C"
{
- KDE_EXPORT void create_audiocd_encoders(KIO::SlaveBase *slave, TQPtrList<AudioCDEncoder> &encoders)
+ KDE_EXPORT void create_audiocd_encoders(TDEIO::SlaveBase *slave, TQPtrList<AudioCDEncoder> &encoders)
{
encoders.append(new EncoderFLAC(slave));
}
@@ -48,7 +48,7 @@ class EncoderFLAC::Private {
public:
FLAC__StreamEncoder *encoder;
FLAC__StreamMetadata** metadata;
- KIO::SlaveBase* ioslave;
+ TDEIO::SlaveBase* ioslave;
unsigned long data;
};
@@ -86,7 +86,7 @@ static FLAC__SeekableStreamEncoderSeekStatus SeekCallback(const FLAC__SeekableS
-EncoderFLAC::EncoderFLAC(KIO::SlaveBase *slave) : AudioCDEncoder(slave) {
+EncoderFLAC::EncoderFLAC(TDEIO::SlaveBase *slave) : AudioCDEncoder(slave) {
d = new Private();
d->ioslave = slave;
d->encoder = 0;
diff --git a/kioslave/audiocd/plugins/flac/encoderflac.h b/kioslave/audiocd/plugins/flac/encoderflac.h
index 9bec8bf4..e563e061 100644
--- a/kioslave/audiocd/plugins/flac/encoderflac.h
+++ b/kioslave/audiocd/plugins/flac/encoderflac.h
@@ -35,7 +35,7 @@
class EncoderFLAC : public AudioCDEncoder {
public:
- EncoderFLAC(KIO::SlaveBase *slave);
+ EncoderFLAC(TDEIO::SlaveBase *slave);
~EncoderFLAC();
virtual TQString type() const { return "FLAC"; };