summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/macros
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/plugins/macros')
-rw-r--r--kexi/plugins/macros/kexiactions/datatableaction.h2
-rw-r--r--kexi/plugins/macros/kexiactions/executeaction.h2
-rw-r--r--kexi/plugins/macros/kexiactions/messageaction.h2
-rw-r--r--kexi/plugins/macros/kexiactions/navigateaction.h2
-rw-r--r--kexi/plugins/macros/kexiactions/openaction.h2
-rw-r--r--kexi/plugins/macros/kexipart/keximacrodesignview.h2
-rw-r--r--kexi/plugins/macros/kexipart/keximacroerror.h2
-rw-r--r--kexi/plugins/macros/kexipart/keximacropart.h2
-rw-r--r--kexi/plugins/macros/kexipart/keximacroproperty.h4
-rw-r--r--kexi/plugins/macros/kexipart/keximacrotextview.h2
-rw-r--r--kexi/plugins/macros/kexipart/keximacroview.h2
-rw-r--r--kexi/plugins/macros/lib/action.h2
-rw-r--r--kexi/plugins/macros/lib/context.h2
-rw-r--r--kexi/plugins/macros/lib/macro.h2
-rw-r--r--kexi/plugins/macros/tests/actiontests.h2
-rw-r--r--kexi/plugins/macros/tests/commontests.h2
-rw-r--r--kexi/plugins/macros/tests/macroitemtests.h2
-rw-r--r--kexi/plugins/macros/tests/macrotests.h2
-rw-r--r--kexi/plugins/macros/tests/testaction.h2
-rw-r--r--kexi/plugins/macros/tests/testobject.h2
-rw-r--r--kexi/plugins/macros/tests/variabletests.h2
-rw-r--r--kexi/plugins/macros/tests/xmlhandlertests.h2
-rw-r--r--kexi/plugins/macros/tests/xmlhandlertests2.h2
23 files changed, 24 insertions, 24 deletions
diff --git a/kexi/plugins/macros/kexiactions/datatableaction.h b/kexi/plugins/macros/kexiactions/datatableaction.h
index a3acf5f8..4da16947 100644
--- a/kexi/plugins/macros/kexiactions/datatableaction.h
+++ b/kexi/plugins/macros/kexiactions/datatableaction.h
@@ -36,7 +36,7 @@ namespace KexiMacro {
*/
class DataTableAction : public KexiAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexiactions/executeaction.h b/kexi/plugins/macros/kexiactions/executeaction.h
index be7c95dc..d5affc76 100644
--- a/kexi/plugins/macros/kexiactions/executeaction.h
+++ b/kexi/plugins/macros/kexiactions/executeaction.h
@@ -38,7 +38,7 @@ namespace KexiMacro {
*/
class ExecuteAction : public KexiAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexiactions/messageaction.h b/kexi/plugins/macros/kexiactions/messageaction.h
index 9af12b89..86672c0e 100644
--- a/kexi/plugins/macros/kexiactions/messageaction.h
+++ b/kexi/plugins/macros/kexiactions/messageaction.h
@@ -39,7 +39,7 @@ namespace KexiMacro {
*/
class MessageAction : public KexiAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexiactions/navigateaction.h b/kexi/plugins/macros/kexiactions/navigateaction.h
index 0dcff98a..a41ce60e 100644
--- a/kexi/plugins/macros/kexiactions/navigateaction.h
+++ b/kexi/plugins/macros/kexiactions/navigateaction.h
@@ -38,7 +38,7 @@ namespace KexiMacro {
*/
class NavigateAction : public KexiAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexiactions/openaction.h b/kexi/plugins/macros/kexiactions/openaction.h
index 700b6ef6..6dab58f1 100644
--- a/kexi/plugins/macros/kexiactions/openaction.h
+++ b/kexi/plugins/macros/kexiactions/openaction.h
@@ -38,7 +38,7 @@ namespace KexiMacro {
*/
class OpenAction : public KexiAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexipart/keximacrodesignview.h b/kexi/plugins/macros/kexipart/keximacrodesignview.h
index c23e31f9..3b42fc9d 100644
--- a/kexi/plugins/macros/kexipart/keximacrodesignview.h
+++ b/kexi/plugins/macros/kexipart/keximacrodesignview.h
@@ -40,7 +40,7 @@ class KexiTableItem;
*/
class KexiMacroDesignView : public KexiMacroView
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexipart/keximacroerror.h b/kexi/plugins/macros/kexipart/keximacroerror.h
index a953f0d9..0e8ae712 100644
--- a/kexi/plugins/macros/kexipart/keximacroerror.h
+++ b/kexi/plugins/macros/kexipart/keximacroerror.h
@@ -49,7 +49,7 @@ class KexiMainWindow;
*/
class KexiMacroError : public KexiMacroErrorBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexipart/keximacropart.h b/kexi/plugins/macros/kexipart/keximacropart.h
index 197676e9..911d940a 100644
--- a/kexi/plugins/macros/kexipart/keximacropart.h
+++ b/kexi/plugins/macros/kexipart/keximacropart.h
@@ -29,7 +29,7 @@
*/
class KexiMacroPart : public KexiPart::Part
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexipart/keximacroproperty.h b/kexi/plugins/macros/kexipart/keximacroproperty.h
index 47f7a7e1..7796934f 100644
--- a/kexi/plugins/macros/kexipart/keximacroproperty.h
+++ b/kexi/plugins/macros/kexipart/keximacroproperty.h
@@ -39,7 +39,7 @@ class KexiMacroProperty
: public TQObject
, public KoProperty::CustomProperty
{
- Q_OBJECT
+ TQ_OBJECT
friend class KexiMacroPropertyWidget;
@@ -139,7 +139,7 @@ class KexiMacroPropertyFactory : public KoProperty::CustomPropertyFactory
*/
class KexiMacroPropertyWidget : public KoProperty::Widget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexipart/keximacrotextview.h b/kexi/plugins/macros/kexipart/keximacrotextview.h
index e8d34600..7ed74129 100644
--- a/kexi/plugins/macros/kexipart/keximacrotextview.h
+++ b/kexi/plugins/macros/kexipart/keximacrotextview.h
@@ -31,7 +31,7 @@ namespace KoMacro {
*/
class KexiMacroTextView : public KexiMacroView
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/kexipart/keximacroview.h b/kexi/plugins/macros/kexipart/keximacroview.h
index ddff961f..4dc8fe29 100644
--- a/kexi/plugins/macros/kexipart/keximacroview.h
+++ b/kexi/plugins/macros/kexipart/keximacroview.h
@@ -41,7 +41,7 @@ class KexiTableItem;
*/
class KexiMacroView : public KexiViewBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/lib/action.h b/kexi/plugins/macros/lib/action.h
index 0b19ef46..a6122c53 100644
--- a/kexi/plugins/macros/lib/action.h
+++ b/kexi/plugins/macros/lib/action.h
@@ -39,7 +39,7 @@ namespace KoMacro {
: public TQObject // TQt functionality like signals and slots
, public TDEShared // shared reference-counting
{
- Q_OBJECT
+ TQ_OBJECT
/// Property to get/set the name.
diff --git a/kexi/plugins/macros/lib/context.h b/kexi/plugins/macros/lib/context.h
index 9bb0f5eb..43b4f6f6 100644
--- a/kexi/plugins/macros/lib/context.h
+++ b/kexi/plugins/macros/lib/context.h
@@ -42,7 +42,7 @@ namespace KoMacro {
: public TQObject
, public TDEShared
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/lib/macro.h b/kexi/plugins/macros/lib/macro.h
index cc1fd77e..8274e434 100644
--- a/kexi/plugins/macros/lib/macro.h
+++ b/kexi/plugins/macros/lib/macro.h
@@ -43,7 +43,7 @@ namespace KoMacro {
, public TDEShared // shared reference-counting
, public XMLHandler // to (un-)serialize from/to XML
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/actiontests.h b/kexi/plugins/macros/tests/actiontests.h
index 91576ea3..6cb27287 100644
--- a/kexi/plugins/macros/tests/actiontests.h
+++ b/kexi/plugins/macros/tests/actiontests.h
@@ -30,7 +30,7 @@ namespace KoMacroTest {
*/
class ActionTests : public KUnitTest::SlotTester
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/commontests.h b/kexi/plugins/macros/tests/commontests.h
index 170974bc..f4f2ca9a 100644
--- a/kexi/plugins/macros/tests/commontests.h
+++ b/kexi/plugins/macros/tests/commontests.h
@@ -30,7 +30,7 @@ namespace KoMacroTest {
*/
class CommonTests : public KUnitTest::SlotTester
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/macroitemtests.h b/kexi/plugins/macros/tests/macroitemtests.h
index 6cd6cf8f..00aebdbf 100644
--- a/kexi/plugins/macros/tests/macroitemtests.h
+++ b/kexi/plugins/macros/tests/macroitemtests.h
@@ -30,7 +30,7 @@ namespace KoMacroTest {
*/
class MacroitemTests : public KUnitTest::SlotTester
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/macrotests.h b/kexi/plugins/macros/tests/macrotests.h
index e1a61ba5..e08391cb 100644
--- a/kexi/plugins/macros/tests/macrotests.h
+++ b/kexi/plugins/macros/tests/macrotests.h
@@ -30,7 +30,7 @@ namespace KoMacroTest {
*/
class MacroTests : public KUnitTest::SlotTester
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/testaction.h b/kexi/plugins/macros/tests/testaction.h
index bb41e5fb..97090776 100644
--- a/kexi/plugins/macros/tests/testaction.h
+++ b/kexi/plugins/macros/tests/testaction.h
@@ -38,7 +38,7 @@ namespace KoMacroTest {
*/
class TestAction : public KoMacro::Action
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/testobject.h b/kexi/plugins/macros/tests/testobject.h
index 81309d99..4fe96171 100644
--- a/kexi/plugins/macros/tests/testobject.h
+++ b/kexi/plugins/macros/tests/testobject.h
@@ -31,7 +31,7 @@ namespace KoMacroTest {
*/
class TestObject : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/variabletests.h b/kexi/plugins/macros/tests/variabletests.h
index 65c07f77..771edfa1 100644
--- a/kexi/plugins/macros/tests/variabletests.h
+++ b/kexi/plugins/macros/tests/variabletests.h
@@ -30,7 +30,7 @@ namespace KoMacroTest {
*/
class VariableTests : public KUnitTest::SlotTester
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/xmlhandlertests.h b/kexi/plugins/macros/tests/xmlhandlertests.h
index 062b24b1..95beab3e 100644
--- a/kexi/plugins/macros/tests/xmlhandlertests.h
+++ b/kexi/plugins/macros/tests/xmlhandlertests.h
@@ -30,7 +30,7 @@ namespace KoMacroTest {
*/
class XMLHandlerTests : public KUnitTest::SlotTester
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kexi/plugins/macros/tests/xmlhandlertests2.h b/kexi/plugins/macros/tests/xmlhandlertests2.h
index 3fd59609..a52d222b 100644
--- a/kexi/plugins/macros/tests/xmlhandlertests2.h
+++ b/kexi/plugins/macros/tests/xmlhandlertests2.h
@@ -30,7 +30,7 @@ namespace KoMacroTest {
*/
class XMLHandlerTests2 : public KUnitTest::SlotTester
{
- Q_OBJECT
+ TQ_OBJECT
public: