summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/mpc/kfile_mpc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kfile-plugins/mpc/kfile_mpc.cpp')
-rw-r--r--kfile-plugins/mpc/kfile_mpc.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kfile-plugins/mpc/kfile_mpc.cpp b/kfile-plugins/mpc/kfile_mpc.cpp
index a1bf5648..830feb54 100644
--- a/kfile-plugins/mpc/kfile_mpc.cpp
+++ b/kfile-plugins/mpc/kfile_mpc.cpp
@@ -48,9 +48,9 @@
K_EXPORT_COMPONENT_FACTORY(kfile_mpc, KGenericFactory<KMpcPlugin>("kfile_mpc"))
-KMpcPlugin::KMpcPlugin( TQObject *tqparent, const char *name,
+KMpcPlugin::KMpcPlugin( TQObject *parent, const char *name,
const TQStringList &args )
- : KFilePlugin( tqparent, name, args )
+ : KFilePlugin( parent, name, args )
{
kdDebug(7034) << "mpc plugin\n";
@@ -240,14 +240,14 @@ bool KMpcPlugin::writeInfo(const KFileMetaInfo& info) const
TQValidator* KMpcPlugin::createValidator( const TQString&,
const TQString &group, const TQString &key,
- TQObject* tqparent, const char* name) const
+ TQObject* parent, const char* name) const
{
if(key == "Tracknumber" || key == "Date")
{
- return new TQIntValidator(0, 9999, tqparent, name);
+ return new TQIntValidator(0, 9999, parent, name);
}
else
- return new TQRegExpValidator(TQRegExp(".*"), tqparent, name);
+ return new TQRegExpValidator(TQRegExp(".*"), parent, name);
}
#include "kfile_mpc.moc"