summaryrefslogtreecommitdiffstats
path: root/plugins/decoder/skeleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/decoder/skeleton.h')
-rw-r--r--plugins/decoder/skeleton.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/decoder/skeleton.h b/plugins/decoder/skeleton.h
index 00f5d15..7b22113 100644
--- a/plugins/decoder/skeleton.h
+++ b/plugins/decoder/skeleton.h
@@ -22,16 +22,17 @@
class K3b<name>DecoderFactory : public K3bAudioDecoderFactory
{
Q_OBJECT
+ TQ_OBJECT
public:
- K3b<name>DecoderFactory( QObject* parent = 0, const char* name = 0 );
+ K3b<name>DecoderFactory( TQObject* tqparent = 0, const char* name = 0 );
~K3b<name>DecoderFactory();
bool canDecode( const KURL& filename );
int pluginSystemVersion() const { return 3; }
- K3bAudioDecoder* createDecoder( QObject* parent = 0,
+ K3bAudioDecoder* createDecoder( TQObject* tqparent = 0,
const char* name = 0 ) const;
};
@@ -39,12 +40,13 @@ class K3b<name>DecoderFactory : public K3bAudioDecoderFactory
class K3b<name>Decoder : public K3bAudioDecoder
{
Q_OBJECT
+ TQ_OBJECT
public:
- K3b<name>Decoder( QObject* parent = 0, const char* name = 0 );
+ K3b<name>Decoder( TQObject* tqparent = 0, const char* name = 0 );
~K3b<name>Decoder();
- QString fileType() const;
+ TQString fileType() const;
protected:
bool analyseFileInternal( K3b::Msf& frames, int& samplerate, int& ch );