diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 16:00:39 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 16:00:39 -0600 |
commit | 2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0 (patch) | |
tree | b2a50806758f457480546bccb342017d9c971bd8 /lib/kross | |
parent | 3464ad940b78776e534eded37c3ae842cae52ad8 (diff) | |
download | koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.tar.gz koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'lib/kross')
-rw-r--r-- | lib/kross/main/scriptaction.h | 2 | ||||
-rw-r--r-- | lib/kross/main/scriptguiclient.h | 2 | ||||
-rw-r--r-- | lib/kross/main/wdgscriptsmanager.h | 2 | ||||
-rw-r--r-- | lib/kross/test/testaction.h | 2 | ||||
-rw-r--r-- | lib/kross/test/testobject.h | 2 | ||||
-rw-r--r-- | lib/kross/test/testwindow.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/lib/kross/main/scriptaction.h b/lib/kross/main/scriptaction.h index 4b78d611..e6b17c73 100644 --- a/lib/kross/main/scriptaction.h +++ b/lib/kross/main/scriptaction.h @@ -41,7 +41,7 @@ namespace Kross { namespace Api { , public Kross::Api::ScriptContainer { Q_OBJECT - TQ_OBJECT + /// The name of the interpreter used to execute the scripting code. //TQ_PROPERTY(TQString interpretername READ getInterpreterName WRITE setInterpreterName) diff --git a/lib/kross/main/scriptguiclient.h b/lib/kross/main/scriptguiclient.h index a835d0a2..c8ebf912 100644 --- a/lib/kross/main/scriptguiclient.h +++ b/lib/kross/main/scriptguiclient.h @@ -45,7 +45,7 @@ namespace Kross { namespace Api { , public KXMLGUIClient { Q_OBJECT - TQ_OBJECT + //TQ_PROPERTY(TQString configfile READ getConfigFile WRITE setConfigFile) public: diff --git a/lib/kross/main/wdgscriptsmanager.h b/lib/kross/main/wdgscriptsmanager.h index 5423777b..a30111d1 100644 --- a/lib/kross/main/wdgscriptsmanager.h +++ b/lib/kross/main/wdgscriptsmanager.h @@ -37,7 +37,7 @@ class WdgScriptsManagerPrivate; class WdgScriptsManager : public WdgScriptsManagerBase { Q_OBJECT - TQ_OBJECT + public: WdgScriptsManager(ScriptGUIClient* scr, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0); ~WdgScriptsManager(); diff --git a/lib/kross/test/testaction.h b/lib/kross/test/testaction.h index 748cd6db..7f4dd79c 100644 --- a/lib/kross/test/testaction.h +++ b/lib/kross/test/testaction.h @@ -32,7 +32,7 @@ class TestAction : public TQWidget { Q_OBJECT - TQ_OBJECT + public: TestAction(Kross::Api::ScriptContainer::Ptr scriptcontainer); ~TestAction(); diff --git a/lib/kross/test/testobject.h b/lib/kross/test/testobject.h index 7bbf6f05..21454829 100644 --- a/lib/kross/test/testobject.h +++ b/lib/kross/test/testobject.h @@ -28,7 +28,7 @@ class TestObject : public TQObject { Q_OBJECT - TQ_OBJECT + TQ_PROPERTY(TQString testProperty READ testProperty WRITE setTestProperty) diff --git a/lib/kross/test/testwindow.h b/lib/kross/test/testwindow.h index 9f5da67d..9a10104c 100644 --- a/lib/kross/test/testwindow.h +++ b/lib/kross/test/testwindow.h @@ -36,7 +36,7 @@ class KTextEdit; class TestWindow : public KMainWindow { Q_OBJECT - TQ_OBJECT + public: TestWindow(const TQString& interpretername, const TQString& scriptcode); virtual ~TestWindow(); |