summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/wav
diff options
context:
space:
mode:
Diffstat (limited to 'kfile-plugins/wav')
-rw-r--r--kfile-plugins/wav/kfile_wav.cpp4
-rw-r--r--kfile-plugins/wav/kfile_wav.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/kfile-plugins/wav/kfile_wav.cpp b/kfile-plugins/wav/kfile_wav.cpp
index 917d8fca..50841d95 100644
--- a/kfile-plugins/wav/kfile_wav.cpp
+++ b/kfile-plugins/wav/kfile_wav.cpp
@@ -43,10 +43,10 @@ typedef KGenericFactory<KWavPlugin> WavFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_wav, WavFactory( "kfile_wav" ))
-KWavPlugin::KWavPlugin(TQObject *tqparent, const char *name,
+KWavPlugin::KWavPlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
KFileMimeTypeInfo* info = addMimeTypeInfo( "audio/x-wav" );
diff --git a/kfile-plugins/wav/kfile_wav.h b/kfile-plugins/wav/kfile_wav.h
index 9eb4d796..01117312 100644
--- a/kfile-plugins/wav/kfile_wav.h
+++ b/kfile-plugins/wav/kfile_wav.h
@@ -30,7 +30,7 @@ class KWavPlugin: public KFilePlugin
TQ_OBJECT
public:
- KWavPlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ KWavPlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
};