summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/sid/kfile_sid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kfile-plugins/sid/kfile_sid.cpp')
-rw-r--r--kfile-plugins/sid/kfile_sid.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kfile-plugins/sid/kfile_sid.cpp b/kfile-plugins/sid/kfile_sid.cpp
index 3bdaf681..444e2ea8 100644
--- a/kfile-plugins/sid/kfile_sid.cpp
+++ b/kfile-plugins/sid/kfile_sid.cpp
@@ -36,10 +36,10 @@ typedef KGenericFactory<KSidPlugin> SidFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_sid, SidFactory("kfile_sid"))
-KSidPlugin::KSidPlugin(TQObject *tqparent, const char *name,
+KSidPlugin::KSidPlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
kdDebug(7034) << "sid plugin\n";
@@ -211,13 +211,13 @@ failure:
TQValidator*
KSidPlugin::createValidator(const TQString& /*mimetype*/, const TQString& group,
- const TQString& /*key*/, TQObject* tqparent,
+ const TQString& /*key*/, TQObject* parent,
const char* name) const
{
kdDebug(7034) << k_funcinfo << endl;
// all items in "General" group are strings of max lenght 31
if (group == "General")
- return new TQRegExpValidator(TQRegExp(".{,31}"), tqparent, name);
+ return new TQRegExpValidator(TQRegExp(".{,31}"), parent, name);
// all others are read-only
return 0;
}