summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/connectionitems.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/connectionitems.h')
-rw-r--r--kdevdesigner/designer/connectionitems.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdevdesigner/designer/connectionitems.h b/kdevdesigner/designer/connectionitems.h
index fe5e276d..0883b961 100644
--- a/kdevdesigner/designer/connectionitems.h
+++ b/kdevdesigner/designer/connectionitems.h
@@ -41,7 +41,7 @@ class ConnectionContainer;
class ConnectionItem : public TQObject,
public TQComboTableItem
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -77,7 +77,7 @@ private:
class SenderItem : public ConnectionItem
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -97,7 +97,7 @@ private slots:
class ReceiverItem : public ConnectionItem
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -117,7 +117,7 @@ private slots:
class SignalItem : public ConnectionItem
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -135,7 +135,7 @@ signals:
class SlotItem : public ConnectionItem
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -164,7 +164,7 @@ private:
class ConnectionContainer : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -176,10 +176,10 @@ public:
i2->setConnection( this );
i3->setConnection( this );
i4->setConnection( this );
- connect( i1, TQT_SIGNAL( changed() ), this, TQT_SLOT( somethingChanged() ) );
- connect( i2, TQT_SIGNAL( changed() ), this, TQT_SLOT( somethingChanged() ) );
- connect( i3, TQT_SIGNAL( changed() ), this, TQT_SLOT( somethingChanged() ) );
- connect( i4, TQT_SIGNAL( changed() ), this, TQT_SLOT( somethingChanged() ) );
+ connect( i1, TQ_SIGNAL( changed() ), this, TQ_SLOT( somethingChanged() ) );
+ connect( i2, TQ_SIGNAL( changed() ), this, TQ_SLOT( somethingChanged() ) );
+ connect( i3, TQ_SIGNAL( changed() ), this, TQ_SLOT( somethingChanged() ) );
+ connect( i4, TQ_SIGNAL( changed() ), this, TQ_SLOT( somethingChanged() ) );
}
bool isModified() const { return mod; }