diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
commit | d8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch) | |
tree | f295f1c545b319963d5357af79fe08991d8141d9 /plugins/decoder/ffmpeg/k3bffmpegdecoder.cpp | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.zip |
TQt4 port k3b
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/decoder/ffmpeg/k3bffmpegdecoder.cpp')
-rw-r--r-- | plugins/decoder/ffmpeg/k3bffmpegdecoder.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/decoder/ffmpeg/k3bffmpegdecoder.cpp b/plugins/decoder/ffmpeg/k3bffmpegdecoder.cpp index fd47c52..d4ab6a9 100644 --- a/plugins/decoder/ffmpeg/k3bffmpegdecoder.cpp +++ b/plugins/decoder/ffmpeg/k3bffmpegdecoder.cpp @@ -31,8 +31,8 @@ extern "C" { K_EXPORT_COMPONENT_FACTORY( libk3bffmpegdecoder, K3bPluginFactory<K3bFFMpegDecoderFactory>( "k3bffmpegdecoder" ) ) -K3bFFMpegDecoderFactory::K3bFFMpegDecoderFactory( QObject* parent, const char* name ) - : K3bAudioDecoderFactory( parent, name ) +K3bFFMpegDecoderFactory::K3bFFMpegDecoderFactory( TQObject* tqparent, const char* name ) + : K3bAudioDecoderFactory( tqparent, name ) { } @@ -42,10 +42,10 @@ K3bFFMpegDecoderFactory::~K3bFFMpegDecoderFactory() } -K3bAudioDecoder* K3bFFMpegDecoderFactory::createDecoder( QObject* parent, +K3bAudioDecoder* K3bFFMpegDecoderFactory::createDecoder( TQObject* tqparent, const char* name ) const { - return new K3bFFMpegDecoder( parent, name ); + return new K3bFFMpegDecoder( tqparent, name ); } @@ -66,8 +66,8 @@ bool K3bFFMpegDecoderFactory::canDecode( const KURL& url ) -K3bFFMpegDecoder::K3bFFMpegDecoder( QObject* parent, const char* name ) - : K3bAudioDecoder( parent, name ), +K3bFFMpegDecoder::K3bFFMpegDecoder( TQObject* tqparent, const char* name ) + : K3bAudioDecoder( tqparent, name ), m_file(0) { } @@ -78,7 +78,7 @@ K3bFFMpegDecoder::~K3bFFMpegDecoder() } -QString K3bFFMpegDecoder::fileType() const +TQString K3bFFMpegDecoder::fileType() const { return m_type; } |