summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/mp3/kfile_mp3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kfile-plugins/mp3/kfile_mp3.cpp')
-rw-r--r--kfile-plugins/mp3/kfile_mp3.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kfile-plugins/mp3/kfile_mp3.cpp b/kfile-plugins/mp3/kfile_mp3.cpp
index 8036cef8..f686147c 100644
--- a/kfile-plugins/mp3/kfile_mp3.cpp
+++ b/kfile-plugins/mp3/kfile_mp3.cpp
@@ -44,8 +44,8 @@ typedef KGenericFactory<KMp3Plugin> Mp3Factory;
K_EXPORT_COMPONENT_FACTORY(kfile_mp3, Mp3Factory( "kfile_mp3" ))
-KMp3Plugin::KMp3Plugin(TQObject *tqparent, const char *name, const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+KMp3Plugin::KMp3Plugin(TQObject *parent, const char *name, const TQStringList &args)
+ : KFilePlugin(parent, name, args)
{
kdDebug(7034) << "mp3 plugin\n";
@@ -267,8 +267,8 @@ class ComboValidator : public KStringListValidator
{
public:
ComboValidator(const TQStringList &list, bool rejecting,
- bool fixupEnabled, TQObject *tqparent, const char *name) :
- KStringListValidator(list, rejecting, fixupEnabled, tqparent, name)
+ bool fixupEnabled, TQObject *parent, const char *name) :
+ KStringListValidator(list, rejecting, fixupEnabled, parent, name)
{
}
@@ -281,13 +281,13 @@ public:
TQValidator *KMp3Plugin::createValidator(const TQString & /* mimetype */,
const TQString &group, const TQString &key,
- TQObject *tqparent, const char *name) const
+ TQObject *parent, const char *name) const
{
kdDebug(7034) << "making a validator for " << group << "/" << key << endl;
if(key == "Tracknumber" || key == "Date")
{
- return new TQIntValidator(0, 9999, tqparent, name);
+ return new TQIntValidator(0, 9999, parent, name);
}
if(key == "Genre")
@@ -298,7 +298,7 @@ TQValidator *KMp3Plugin::createValidator(const TQString & /* mimetype */,
{
l.append(TStringToQString((*it)));
}
- return new ComboValidator(l, false, true, tqparent, name);
+ return new ComboValidator(l, false, true, parent, name);
}
return 0;