diff options
Diffstat (limited to 'plugins/decoder/flac')
-rw-r--r-- | plugins/decoder/flac/k3bflacdecoder.cpp | 12 | ||||
-rw-r--r-- | plugins/decoder/flac/k3bflacdecoder.h | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/plugins/decoder/flac/k3bflacdecoder.cpp b/plugins/decoder/flac/k3bflacdecoder.cpp index 495e3d9..40a61c9 100644 --- a/plugins/decoder/flac/k3bflacdecoder.cpp +++ b/plugins/decoder/flac/k3bflacdecoder.cpp @@ -240,8 +240,8 @@ FLAC__StreamDecoderWriteStatus K3bFLACDecoder::Private::write_callback(const FLA return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; } -K3bFLACDecoder::K3bFLACDecoder( TQObject* tqparent, const char* name ) - : K3bAudioDecoder( tqparent, name ) +K3bFLACDecoder::K3bFLACDecoder( TQObject* parent, const char* name ) + : K3bAudioDecoder( parent, name ) { d = 0; } @@ -404,8 +404,8 @@ TQString K3bFLACDecoder::technicalInfo( const TQString& info ) const -K3bFLACDecoderFactory::K3bFLACDecoderFactory( TQObject* tqparent, const char* name ) - : K3bAudioDecoderFactory( tqparent, name ) +K3bFLACDecoderFactory::K3bFLACDecoderFactory( TQObject* parent, const char* name ) + : K3bAudioDecoderFactory( parent, name ) { } @@ -415,10 +415,10 @@ K3bFLACDecoderFactory::~K3bFLACDecoderFactory() } -K3bAudioDecoder* K3bFLACDecoderFactory::createDecoder( TQObject* tqparent, +K3bAudioDecoder* K3bFLACDecoderFactory::createDecoder( TQObject* parent, const char* name ) const { - return new K3bFLACDecoder( tqparent, name ); + return new K3bFLACDecoder( parent, name ); } diff --git a/plugins/decoder/flac/k3bflacdecoder.h b/plugins/decoder/flac/k3bflacdecoder.h index 2e3bccf..fae7082 100644 --- a/plugins/decoder/flac/k3bflacdecoder.h +++ b/plugins/decoder/flac/k3bflacdecoder.h @@ -27,14 +27,14 @@ class K3bFLACDecoderFactory : public K3bAudioDecoderFactory TQ_OBJECT public: - K3bFLACDecoderFactory( TQObject* tqparent = 0, const char* name = 0 ); + K3bFLACDecoderFactory( TQObject* parent = 0, const char* name = 0 ); ~K3bFLACDecoderFactory(); bool canDecode( const KURL& filename ); int pluginSystemVersion() const { return 3; } - K3bAudioDecoder* createDecoder( TQObject* tqparent = 0, + K3bAudioDecoder* createDecoder( TQObject* parent = 0, const char* name = 0 ) const; }; @@ -45,7 +45,7 @@ class K3bFLACDecoder : public K3bAudioDecoder TQ_OBJECT public: - K3bFLACDecoder( TQObject* tqparent = 0, const char* name = 0 ); + K3bFLACDecoder( TQObject* parent = 0, const char* name = 0 ); ~K3bFLACDecoder(); void cleanup(); |