summaryrefslogtreecommitdiffstats
path: root/plugins/decoder/flac
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitdf8e67b86696f691708af8592d86282b09bab011 (patch)
treeca90d734c9011d457a42f0a7004a9507b2c2c1bd /plugins/decoder/flac
parent33881ea4441221b1ca0789a72c4c7249d923a0df (diff)
downloadk3b-df8e67b86696f691708af8592d86282b09bab011.tar.gz
k3b-df8e67b86696f691708af8592d86282b09bab011.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/decoder/flac')
-rw-r--r--plugins/decoder/flac/k3bflacdecoder.cpp12
-rw-r--r--plugins/decoder/flac/k3bflacdecoder.h6
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();