diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:00:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:00:39 -0600 |
commit | 2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0 (patch) | |
tree | b2a50806758f457480546bccb342017d9c971bd8 /tools | |
parent | 3464ad940b78776e534eded37c3ae842cae52ad8 (diff) | |
download | koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.tar.gz koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'tools')
-rw-r--r-- | tools/converter/koconverter.h | 2 | ||||
-rw-r--r-- | tools/kfile-plugins/abiword/kfile_abiword.h | 2 | ||||
-rw-r--r-- | tools/kfile-plugins/gnumeric/kfile_gnumeric.h | 2 | ||||
-rw-r--r-- | tools/kfile-plugins/koffice/kfile_koffice.h | 2 | ||||
-rw-r--r-- | tools/kfile-plugins/ooo/kfile_ooo.h | 2 | ||||
-rw-r--r-- | tools/spell/main.h | 2 | ||||
-rw-r--r-- | tools/thesaurus/main.h | 2 | ||||
-rw-r--r-- | tools/thumbnail/kofficecreator.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/tools/converter/koconverter.h b/tools/converter/koconverter.h index 4a02e7a7..87672b7b 100644 --- a/tools/converter/koconverter.h +++ b/tools/converter/koconverter.h @@ -25,7 +25,7 @@ class ProgressObject : public TQObject { Q_OBJECT - TQ_OBJECT + public: ProgressObject() : TQObject( 0, 0 ) { } public slots: diff --git a/tools/kfile-plugins/abiword/kfile_abiword.h b/tools/kfile-plugins/abiword/kfile_abiword.h index cf6cadca..147516fc 100644 --- a/tools/kfile-plugins/abiword/kfile_abiword.h +++ b/tools/kfile-plugins/abiword/kfile_abiword.h @@ -28,7 +28,7 @@ class TQDomNode; class AbiwordPlugin: public KFilePlugin { Q_OBJECT - TQ_OBJECT + public: AbiwordPlugin( TQObject *parent, const char *name, const TQStringList& args ); diff --git a/tools/kfile-plugins/gnumeric/kfile_gnumeric.h b/tools/kfile-plugins/gnumeric/kfile_gnumeric.h index dbf6c312..996e49a8 100644 --- a/tools/kfile-plugins/gnumeric/kfile_gnumeric.h +++ b/tools/kfile-plugins/gnumeric/kfile_gnumeric.h @@ -28,7 +28,7 @@ class TQDomNode; class GnumericPlugin: public KFilePlugin { Q_OBJECT - TQ_OBJECT + public: GnumericPlugin( TQObject *parent, const char *name, const TQStringList& args ); diff --git a/tools/kfile-plugins/koffice/kfile_koffice.h b/tools/kfile-plugins/koffice/kfile_koffice.h index 0f187fd8..607225a4 100644 --- a/tools/kfile-plugins/koffice/kfile_koffice.h +++ b/tools/kfile-plugins/koffice/kfile_koffice.h @@ -28,7 +28,7 @@ class TQDomNode; class KOfficePlugin: public KFilePlugin { Q_OBJECT - TQ_OBJECT + public: KOfficePlugin( TQObject *parent, const char *name, const TQStringList& args ); diff --git a/tools/kfile-plugins/ooo/kfile_ooo.h b/tools/kfile-plugins/ooo/kfile_ooo.h index 8114396f..e9cea14d 100644 --- a/tools/kfile-plugins/ooo/kfile_ooo.h +++ b/tools/kfile-plugins/ooo/kfile_ooo.h @@ -31,7 +31,7 @@ class TQDomElement; class KOfficePlugin: public KFilePlugin { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/tools/spell/main.h b/tools/spell/main.h index 2f8c97d5..30ed65fd 100644 --- a/tools/spell/main.h +++ b/tools/spell/main.h @@ -27,7 +27,7 @@ class SpellChecker : public KDataTool { Q_OBJECT - TQ_OBJECT + public: SpellChecker( TQObject* parent, const char* name, const TQStringList & ); diff --git a/tools/thesaurus/main.h b/tools/thesaurus/main.h index 01c27621..88aa19ee 100644 --- a/tools/thesaurus/main.h +++ b/tools/thesaurus/main.h @@ -63,7 +63,7 @@ class TQToolButton; class Thesaurus : public KDataTool { Q_OBJECT - TQ_OBJECT + public: Thesaurus(TQObject* parent, const char* name, const TQStringList &); diff --git a/tools/thumbnail/kofficecreator.h b/tools/thumbnail/kofficecreator.h index 7bb70df7..c6a27426 100644 --- a/tools/thumbnail/kofficecreator.h +++ b/tools/thumbnail/kofficecreator.h @@ -29,7 +29,7 @@ class KoDocument; class KOfficeCreator : public TQObject, public ThumbCreator { Q_OBJECT - TQ_OBJECT + public: KOfficeCreator(); virtual ~KOfficeCreator(); |