summaryrefslogtreecommitdiffstats
path: root/tools/kfile-plugins
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /tools/kfile-plugins
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz
koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'tools/kfile-plugins')
-rw-r--r--tools/kfile-plugins/abiword/kfile_abiword.cpp4
-rw-r--r--tools/kfile-plugins/abiword/kfile_abiword.h2
-rw-r--r--tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp4
-rw-r--r--tools/kfile-plugins/gnumeric/kfile_gnumeric.h2
-rw-r--r--tools/kfile-plugins/koffice/kfile_koffice.cpp4
-rw-r--r--tools/kfile-plugins/koffice/kfile_koffice.h2
-rw-r--r--tools/kfile-plugins/ooo/kfile_ooo.cpp8
-rw-r--r--tools/kfile-plugins/ooo/kfile_ooo.h4
8 files changed, 15 insertions, 15 deletions
diff --git a/tools/kfile-plugins/abiword/kfile_abiword.cpp b/tools/kfile-plugins/abiword/kfile_abiword.cpp
index ca130b15..2f9bb418 100644
--- a/tools/kfile-plugins/abiword/kfile_abiword.cpp
+++ b/tools/kfile-plugins/abiword/kfile_abiword.cpp
@@ -33,10 +33,10 @@ typedef KGenericFactory<AbiwordPlugin> AbiwordFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_abiword, AbiwordFactory( "kfile_abiword" ))
-AbiwordPlugin::AbiwordPlugin(TQObject *tqparent, const char *name,
+AbiwordPlugin::AbiwordPlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
init();
}
diff --git a/tools/kfile-plugins/abiword/kfile_abiword.h b/tools/kfile-plugins/abiword/kfile_abiword.h
index 4aa3a837..cf6cadca 100644
--- a/tools/kfile-plugins/abiword/kfile_abiword.h
+++ b/tools/kfile-plugins/abiword/kfile_abiword.h
@@ -31,7 +31,7 @@ class AbiwordPlugin: public KFilePlugin
TQ_OBJECT
public:
- AbiwordPlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ AbiwordPlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
diff --git a/tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp b/tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp
index ad29c130..145f318b 100644
--- a/tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp
+++ b/tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp
@@ -33,10 +33,10 @@ typedef KGenericFactory<GnumericPlugin> GnumericFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_gnumeric, GnumericFactory( "kfile_gnumeric" ))
-GnumericPlugin::GnumericPlugin(TQObject *tqparent, const char *name,
+GnumericPlugin::GnumericPlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
init();
}
diff --git a/tools/kfile-plugins/gnumeric/kfile_gnumeric.h b/tools/kfile-plugins/gnumeric/kfile_gnumeric.h
index deeb773c..dbf6c312 100644
--- a/tools/kfile-plugins/gnumeric/kfile_gnumeric.h
+++ b/tools/kfile-plugins/gnumeric/kfile_gnumeric.h
@@ -31,7 +31,7 @@ class GnumericPlugin: public KFilePlugin
TQ_OBJECT
public:
- GnumericPlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ GnumericPlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
diff --git a/tools/kfile-plugins/koffice/kfile_koffice.cpp b/tools/kfile-plugins/koffice/kfile_koffice.cpp
index 88d7fe8b..05cd22ef 100644
--- a/tools/kfile-plugins/koffice/kfile_koffice.cpp
+++ b/tools/kfile-plugins/koffice/kfile_koffice.cpp
@@ -33,10 +33,10 @@ typedef KGenericFactory<KOfficePlugin> KOfficeFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_koffice, KOfficeFactory( "kfile_koffice" ))
-KOfficePlugin::KOfficePlugin(TQObject *tqparent, const char *name,
+KOfficePlugin::KOfficePlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
makeMimeTypeInfo( "application/x-kword" );
makeMimeTypeInfo( "application/x-kpresenter" );
diff --git a/tools/kfile-plugins/koffice/kfile_koffice.h b/tools/kfile-plugins/koffice/kfile_koffice.h
index 6139570f..0f187fd8 100644
--- a/tools/kfile-plugins/koffice/kfile_koffice.h
+++ b/tools/kfile-plugins/koffice/kfile_koffice.h
@@ -31,7 +31,7 @@ class KOfficePlugin: public KFilePlugin
TQ_OBJECT
public:
- KOfficePlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ KOfficePlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
diff --git a/tools/kfile-plugins/ooo/kfile_ooo.cpp b/tools/kfile-plugins/ooo/kfile_ooo.cpp
index 8b873ac1..fc6ca9c3 100644
--- a/tools/kfile-plugins/ooo/kfile_ooo.cpp
+++ b/tools/kfile-plugins/ooo/kfile_ooo.cpp
@@ -123,10 +123,10 @@ static const char * metadocstat = "meta:document-statistic";
static const char * metaname = "meta:name" ;
static const char * metauserdef = "meta:user-defined";
static const char * metafile = "meta.xml" ;
-KOfficePlugin::KOfficePlugin(TQObject *tqparent, const char *name,
+KOfficePlugin::KOfficePlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
int i = 0;
while (mimetypes[i])
@@ -576,12 +576,12 @@ TQDomNode KOfficePlugin::getBaseNode(const TQDomDocument &doc) const
TQValidator * KOfficePlugin::createValidator(const TQString &, /* mimetype */
const TQString & , /* group */
const TQString &key,
- TQObject * tqparent,
+ TQObject * parent,
const char * name ) const
{
if (key == dclanguage)
return new TQRegExpValidator(TQRegExp("[a-zA-Z-]{1,5}"),
- tqparent, name);
+ parent, name);
return 0;
}
diff --git a/tools/kfile-plugins/ooo/kfile_ooo.h b/tools/kfile-plugins/ooo/kfile_ooo.h
index b8604260..8114396f 100644
--- a/tools/kfile-plugins/ooo/kfile_ooo.h
+++ b/tools/kfile-plugins/ooo/kfile_ooo.h
@@ -36,7 +36,7 @@ class KOfficePlugin: public KFilePlugin
public:
/**
* Constructor */
- KOfficePlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ KOfficePlugin( TQObject *parent, const char *name, const TQStringList& args );
/**
* Read informations from files and store info in KFileMetaInfo.
* We currently only parse meta.xml in OOo files.
@@ -55,7 +55,7 @@ public:
virtual TQValidator* createValidator( const TQString& mimetype,
const TQString &group,
const TQString &key,
- TQObject* tqparent,
+ TQObject* parent,
const char* name) const;
private:
bool writeTextNode(TQDomDocument & doc,