summaryrefslogtreecommitdiffstats
path: root/plugins/decoder/libsndfile
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/libsndfile
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/libsndfile')
-rw-r--r--plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp12
-rw-r--r--plugins/decoder/libsndfile/k3blibsndfiledecoder.h6
2 files changed, 9 insertions, 9 deletions
diff --git a/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp b/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp
index 0f23d4e..8532da9 100644
--- a/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp
+++ b/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp
@@ -57,8 +57,8 @@ public:
-K3bLibsndfileDecoder::K3bLibsndfileDecoder( TQObject* tqparent, const char* name )
- : K3bAudioDecoder( tqparent, name )
+K3bLibsndfileDecoder::K3bLibsndfileDecoder( TQObject* parent, const char* name )
+ : K3bAudioDecoder( parent, name )
{
d = new Private();
}
@@ -202,8 +202,8 @@ void K3bLibsndfileDecoder::cleanup()
/********************************************************/
-K3bLibsndfileDecoderFactory::K3bLibsndfileDecoderFactory( TQObject* tqparent, const char* name )
- : K3bAudioDecoderFactory( tqparent, name )
+K3bLibsndfileDecoderFactory::K3bLibsndfileDecoderFactory( TQObject* parent, const char* name )
+ : K3bAudioDecoderFactory( parent, name )
{
}
@@ -213,10 +213,10 @@ K3bLibsndfileDecoderFactory::~K3bLibsndfileDecoderFactory()
}
-K3bAudioDecoder* K3bLibsndfileDecoderFactory::createDecoder( TQObject* tqparent,
+K3bAudioDecoder* K3bLibsndfileDecoderFactory::createDecoder( TQObject* parent,
const char* name ) const
{
- return new K3bLibsndfileDecoder( tqparent, name );
+ return new K3bLibsndfileDecoder( parent, name );
}
diff --git a/plugins/decoder/libsndfile/k3blibsndfiledecoder.h b/plugins/decoder/libsndfile/k3blibsndfiledecoder.h
index 005cb0b..cd23eb1 100644
--- a/plugins/decoder/libsndfile/k3blibsndfiledecoder.h
+++ b/plugins/decoder/libsndfile/k3blibsndfiledecoder.h
@@ -28,7 +28,7 @@ class K3bLibsndfileDecoderFactory : public K3bAudioDecoderFactory
TQ_OBJECT
public:
- K3bLibsndfileDecoderFactory( TQObject* tqparent = 0, const char* name = 0 );
+ K3bLibsndfileDecoderFactory( TQObject* parent = 0, const char* name = 0 );
~K3bLibsndfileDecoderFactory();
bool canDecode( const KURL& filename );
@@ -37,7 +37,7 @@ class K3bLibsndfileDecoderFactory : public K3bAudioDecoderFactory
bool multiFormatDecoder() const { return true; }
- K3bAudioDecoder* createDecoder( TQObject* tqparent = 0,
+ K3bAudioDecoder* createDecoder( TQObject* parent = 0,
const char* name = 0 ) const;
};
@@ -48,7 +48,7 @@ class K3bLibsndfileDecoder : public K3bAudioDecoder
TQ_OBJECT
public:
- K3bLibsndfileDecoder( TQObject* tqparent = 0, const char* name = 0 );
+ K3bLibsndfileDecoder( TQObject* parent = 0, const char* name = 0 );
~K3bLibsndfileDecoder();
void cleanup();
TQString fileType() const;