diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:37:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-22 10:29:56 +0900 |
commit | ef14fba42c78a96d905c42632a62dc11f353b1c3 (patch) | |
tree | ad32afdaaa32b215fe8b9be49fbf578d30a556d3 /lib/kross | |
parent | 8b5a8460b388924f71bef71fc0dc4862e8c146d2 (diff) | |
download | koffice-ef14fba4.tar.gz koffice-ef14fba4.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cb59219281a9666896ee96b02a487bbc0206082d)
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 ce6544bc6..58e6fc19c 100644 --- a/lib/kross/main/scriptaction.h +++ b/lib/kross/main/scriptaction.h @@ -40,7 +40,7 @@ namespace Kross { namespace Api { : public TDEAction , public Kross::Api::ScriptContainer { - Q_OBJECT + TQ_OBJECT /// The name of the interpreter used to execute the scripting code. diff --git a/lib/kross/main/scriptguiclient.h b/lib/kross/main/scriptguiclient.h index 01a9b22e5..28bb62c0b 100644 --- a/lib/kross/main/scriptguiclient.h +++ b/lib/kross/main/scriptguiclient.h @@ -44,7 +44,7 @@ namespace Kross { namespace Api { : public TQObject , public KXMLGUIClient { - Q_OBJECT + TQ_OBJECT //TQ_PROPERTY(TQString configfile READ getConfigFile WRITE setConfigFile) diff --git a/lib/kross/main/wdgscriptsmanager.h b/lib/kross/main/wdgscriptsmanager.h index a30111d18..1415169ad 100644 --- a/lib/kross/main/wdgscriptsmanager.h +++ b/lib/kross/main/wdgscriptsmanager.h @@ -36,7 +36,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); diff --git a/lib/kross/test/testaction.h b/lib/kross/test/testaction.h index 8e2d355ef..db6e2b906 100644 --- a/lib/kross/test/testaction.h +++ b/lib/kross/test/testaction.h @@ -31,7 +31,7 @@ class TestAction : public TQWidget { - Q_OBJECT + TQ_OBJECT public: TestAction(Kross::Api::ScriptContainer::Ptr scriptcontainer); diff --git a/lib/kross/test/testobject.h b/lib/kross/test/testobject.h index 21454829e..0ec38a6f5 100644 --- a/lib/kross/test/testobject.h +++ b/lib/kross/test/testobject.h @@ -27,7 +27,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 45f14de0e..e090d8000 100644 --- a/lib/kross/test/testwindow.h +++ b/lib/kross/test/testwindow.h @@ -35,7 +35,7 @@ class KTextEdit; class TestWindow : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: TestWindow(const TQString& interpretername, const TQString& scriptcode); |