diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:06:23 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:06:23 -0600 |
commit | 153e023cc2d72c36f700b8be485ccccca6d0e8f1 (patch) | |
tree | 2ebdcffd37f89f2bec1eb2547831a1f5118ccd20 /tqt3integration/module/module.h | |
parent | 52d0d54062c878fac12cacab8ea9dbfe9c1da905 (diff) | |
download | tdebase-153e023cc2d72c36f700b8be485ccccca6d0e8f1.tar.gz tdebase-153e023cc2d72c36f700b8be485ccccca6d0e8f1.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'tqt3integration/module/module.h')
-rw-r--r-- | tqt3integration/module/module.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tqt3integration/module/module.h b/tqt3integration/module/module.h index db9d7a295..81b794c86 100644 --- a/tqt3integration/module/module.h +++ b/tqt3integration/module/module.h @@ -37,7 +37,7 @@ class Module : public KDEDModule { Q_OBJECT - TQ_OBJECT + public: Module( const TQCString& obj ); // DCOP @@ -70,7 +70,7 @@ class KFileDialog : public ::KFileDialog { Q_OBJECT - TQ_OBJECT + public: KFileDialog(const TQString& startDir, const TQString& filter, TQWidget *parent, const char *name, bool modal) @@ -87,7 +87,7 @@ class KDirSelectDialog : public ::KDirSelectDialog { Q_OBJECT - TQ_OBJECT + public: KDirSelectDialog(const TQString& startDir, bool localOnly, TQWidget *parent, const char *name, bool modal) @@ -104,7 +104,7 @@ class KColorDialog : public ::KColorDialog { Q_OBJECT - TQ_OBJECT + public: KColorDialog( TQWidget *parent, const char *name, bool modal ) : ::KColorDialog( parent, name, modal ) @@ -119,7 +119,7 @@ class KFontDialog : public ::KFontDialog { Q_OBJECT - TQ_OBJECT + public: KFontDialog( TQWidget *parent, const char *name, bool onlyFixed, bool modal, const TQStringList &fontlist = TQStringList(), bool makeFrame = true, @@ -136,7 +136,7 @@ class KDialogBase : public ::KDialogBase { Q_OBJECT - TQ_OBJECT + public: KDialogBase( const TQString &caption, int buttonMask=Yes|No|Cancel, ButtonCode defaultButton=Yes, ButtonCode escapeButton=Cancel, |