summaryrefslogtreecommitdiffstats
path: root/kioslave/audiocd/plugins/wav/encoderwav.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/audiocd/plugins/wav/encoderwav.cpp')
-rw-r--r--kioslave/audiocd/plugins/wav/encoderwav.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kioslave/audiocd/plugins/wav/encoderwav.cpp b/kioslave/audiocd/plugins/wav/encoderwav.cpp
index bcf3ba64..8052ce41 100644
--- a/kioslave/audiocd/plugins/wav/encoderwav.cpp
+++ b/kioslave/audiocd/plugins/wav/encoderwav.cpp
@@ -26,7 +26,7 @@
extern "C"
{
- KDE_EXPORT void create_audiocd_encoders(KIO::SlaveBase *slave, QPtrList<AudioCDEncoder> &encoders)
+ KDE_EXPORT void create_audiocd_encoders(KIO::SlaveBase *slave, TQPtrList<AudioCDEncoder> &encoders)
{
encoders.append( new EncoderWav(slave));
encoders.append( new EncoderCda(slave));
@@ -76,7 +76,7 @@ long EncoderWav::readInit(long byteCount){
riffHeader[42] = (byteCount >> 16) & 0xff;
riffHeader[43] = (byteCount >> 24) & 0xff;
- QByteArray output;
+ TQByteArray output;
output.setRawData(riffHeader, 44);
ioslave->data(output);
output.resetRawData(riffHeader, 44);