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 /lib/util | |
parent | 01b73b195ac252a67a00cfa0fa6a1ce4555f7304 (diff) | |
download | tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.tar.gz tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/blockingkprocess.h | 2 | ||||
-rw-r--r-- | lib/util/configwidgetproxy.h | 2 | ||||
-rw-r--r-- | lib/util/execcommand.h | 2 | ||||
-rw-r--r-- | lib/util/kdevjobtimer.h | 2 | ||||
-rw-r--r-- | lib/util/kdevshellwidget.h | 2 | ||||
-rw-r--r-- | lib/util/kscriptactionmanager.h | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/lib/util/blockingkprocess.h b/lib/util/blockingkprocess.h index 3db2c170..f6fa9d2e 100644 --- a/lib/util/blockingkprocess.h +++ b/lib/util/blockingkprocess.h @@ -31,7 +31,7 @@ class TQTimer; class BlockingKProcess : public KProcess { Q_OBJECT - TQ_OBJECT + public: BlockingKProcess(TQObject *parent, const char *name=0); diff --git a/lib/util/configwidgetproxy.h b/lib/util/configwidgetproxy.h index 145483b1..7881f830 100644 --- a/lib/util/configwidgetproxy.h +++ b/lib/util/configwidgetproxy.h @@ -71,7 +71,7 @@ KDevCore::projectConfigWidget() slots. class ConfigWidgetProxy : public TQObject { Q_OBJECT - TQ_OBJECT + public: /**Constructor. diff --git a/lib/util/execcommand.h b/lib/util/execcommand.h index abdcd687..540e5b1a 100644 --- a/lib/util/execcommand.h +++ b/lib/util/execcommand.h @@ -45,7 +45,7 @@ Command execution facilities. class ExecCommand : public TQObject { Q_OBJECT - TQ_OBJECT + public: ExecCommand( const TQString& executable, const TQStringList& args, const TQString& workingDir = TQString(), diff --git a/lib/util/kdevjobtimer.h b/lib/util/kdevjobtimer.h index 09c325f3..b0fa829e 100644 --- a/lib/util/kdevjobtimer.h +++ b/lib/util/kdevjobtimer.h @@ -17,7 +17,7 @@ class KDevJobTimer : public TQTimer { Q_OBJECT - TQ_OBJECT + public: static void singleShot( int msec, TQObject * receiver, const char * member, void * payload ); diff --git a/lib/util/kdevshellwidget.h b/lib/util/kdevshellwidget.h index 81e81eff..2743c829 100644 --- a/lib/util/kdevshellwidget.h +++ b/lib/util/kdevshellwidget.h @@ -27,7 +27,7 @@ class KDevShellWidget : public TQVBox { Q_OBJECT - TQ_OBJECT + public: KDevShellWidget(TQWidget *parent = 0, const char *name = 0); diff --git a/lib/util/kscriptactionmanager.h b/lib/util/kscriptactionmanager.h index fa2c53ed..c2e43238 100644 --- a/lib/util/kscriptactionmanager.h +++ b/lib/util/kscriptactionmanager.h @@ -37,7 +37,7 @@ class TQTimer; */ class KScriptAction : public TQObject, public KScriptClientInterface { Q_OBJECT - TQ_OBJECT + public: KScriptAction( const TQString &scriptDesktopFile, TQObject *interface, KActionCollection *ac ); @@ -93,7 +93,7 @@ private: */ class KScriptActionManager : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** |