diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:59:25 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:59:25 -0600 |
commit | d5da3c1493156c34a266894b58c026fb8992e448 (patch) | |
tree | 71a8d8d095503ba938d0e4accfeb89c427238237 /kbfxlib | |
parent | 31c3dd003947c90b1337c0dd4fff72dc16d7a290 (diff) | |
download | kbfx-d5da3c1493156c34a266894b58c026fb8992e448.tar.gz kbfx-d5da3c1493156c34a266894b58c026fb8992e448.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kbfxlib')
-rw-r--r-- | kbfxlib/common/kbfxfontchooser.h | 2 | ||||
-rw-r--r-- | kbfxlib/common/kbfxkiodownload.h | 2 | ||||
-rw-r--r-- | kbfxlib/common/kbfxpixmaplabel.h | 2 | ||||
-rw-r--r-- | kbfxlib/common/kbfxpushbutton.h | 2 | ||||
-rw-r--r-- | kbfxlib/data/kbfxplasmapluginloader.h | 2 | ||||
-rw-r--r-- | kbfxlib/data/kbfxplugin.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/kbfxlib/common/kbfxfontchooser.h b/kbfxlib/common/kbfxfontchooser.h index 8d0191d..d216719 100644 --- a/kbfxlib/common/kbfxfontchooser.h +++ b/kbfxlib/common/kbfxfontchooser.h @@ -42,7 +42,7 @@ class TQFont; class KBFXFontChooser : public TQWidget { Q_OBJECT - TQ_OBJECT + TQ_PROPERTY ( TQFont font READ font WRITE setFont ) public: KBFXFontChooser ( TQWidget *parent = 0, const char *name = 0 ); diff --git a/kbfxlib/common/kbfxkiodownload.h b/kbfxlib/common/kbfxkiodownload.h index 5058750..2d9e319 100644 --- a/kbfxlib/common/kbfxkiodownload.h +++ b/kbfxlib/common/kbfxkiodownload.h @@ -32,7 +32,7 @@ class KbfxKioDownload : public TQObject { Q_OBJECT - TQ_OBJECT + public: KbfxKioDownload ( TQObject * parent = 0, const char * name = 0 ); diff --git a/kbfxlib/common/kbfxpixmaplabel.h b/kbfxlib/common/kbfxpixmaplabel.h index decbf50..21418ca 100644 --- a/kbfxlib/common/kbfxpixmaplabel.h +++ b/kbfxlib/common/kbfxpixmaplabel.h @@ -30,7 +30,7 @@ class KbfxPixmapLabel : public TQLabel { Q_OBJECT - TQ_OBJECT + public: KbfxPixmapLabel ( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 ); diff --git a/kbfxlib/common/kbfxpushbutton.h b/kbfxlib/common/kbfxpushbutton.h index 65f20e5..2341893 100644 --- a/kbfxlib/common/kbfxpushbutton.h +++ b/kbfxlib/common/kbfxpushbutton.h @@ -29,7 +29,7 @@ class KbfxPushButton: public KPushButton { Q_OBJECT - TQ_OBJECT + public: KbfxPushButton ( TQWidget *parent = 0, const char *name = 0 ); diff --git a/kbfxlib/data/kbfxplasmapluginloader.h b/kbfxlib/data/kbfxplasmapluginloader.h index 346be7f..eea68ab 100644 --- a/kbfxlib/data/kbfxplasmapluginloader.h +++ b/kbfxlib/data/kbfxplasmapluginloader.h @@ -31,7 +31,7 @@ class KbfxPlasmaPluginLoader:public TQObject { Q_OBJECT - TQ_OBJECT + public: typedef TQMap<TQString,KbfxPlugin*> PluginMap; diff --git a/kbfxlib/data/kbfxplugin.h b/kbfxlib/data/kbfxplugin.h index 72031a0..86d47d0 100644 --- a/kbfxlib/data/kbfxplugin.h +++ b/kbfxlib/data/kbfxplugin.h @@ -38,7 +38,7 @@ class KbfxPlugin:public TQObject { Q_OBJECT - TQ_OBJECT + public: KbfxPlugin(); |