diff options
Diffstat (limited to 'kfile-plugins/sid/kfile_sid.cpp')
-rw-r--r-- | kfile-plugins/sid/kfile_sid.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kfile-plugins/sid/kfile_sid.cpp b/kfile-plugins/sid/kfile_sid.cpp index 444e2ea8..3bdaf681 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 *parent, const char *name, +KSidPlugin::KSidPlugin(TQObject *tqparent, const char *name, const TQStringList &args) - : KFilePlugin(parent, name, args) + : KFilePlugin(tqparent, 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* parent, + const TQString& /*key*/, TQObject* tqparent, 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}"), parent, name); + return new TQRegExpValidator(TQRegExp(".{,31}"), tqparent, name); // all others are read-only return 0; } |