diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:32 -0600 |
commit | 0fed1a188b8d8be416550c63e2d5954f06434386 (patch) | |
tree | 19f346183997f815423bd63cb9f2e86baa1f3b14 /parts/grepview | |
parent | 01b73b195ac252a67a00cfa0fa6a1ce4555f7304 (diff) | |
download | tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.tar.gz tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'parts/grepview')
-rw-r--r-- | parts/grepview/grepdlg.h | 2 | ||||
-rw-r--r-- | parts/grepview/grepviewpart.h | 2 | ||||
-rw-r--r-- | parts/grepview/grepviewwidget.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/parts/grepview/grepdlg.h b/parts/grepview/grepdlg.h index 3ddcfd68..60637a0f 100644 --- a/parts/grepview/grepdlg.h +++ b/parts/grepview/grepdlg.h @@ -28,7 +28,7 @@ class KLineEdit; class GrepDialog : public TQDialog { Q_OBJECT - TQ_OBJECT + public: GrepDialog( GrepViewPart * part, TQWidget *parent=0, const char *name=0 ); diff --git a/parts/grepview/grepviewpart.h b/parts/grepview/grepviewpart.h index 2a05c5d6..8f7be426 100644 --- a/parts/grepview/grepviewpart.h +++ b/parts/grepview/grepviewpart.h @@ -25,7 +25,7 @@ class GrepViewWidget; class GrepViewPart : public KDevPlugin { Q_OBJECT - TQ_OBJECT + public: GrepViewPart( TQObject *parent, const char *name, const TQStringList & ); diff --git a/parts/grepview/grepviewwidget.h b/parts/grepview/grepviewwidget.h index 430a4794..b1208443 100644 --- a/parts/grepview/grepviewwidget.h +++ b/parts/grepview/grepviewwidget.h @@ -25,7 +25,7 @@ class TQToolButton; class GrepViewProcessWidget : public ProcessWidget { Q_OBJECT - TQ_OBJECT + public: GrepViewProcessWidget(TQWidget* parent) : ProcessWidget(parent) {}; ~GrepViewProcessWidget(){}; @@ -60,7 +60,7 @@ private: class GrepViewWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: GrepViewWidget(GrepViewPart *part); |