summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/connectionitems.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/connectionitems.cpp')
-rw-r--r--kdevdesigner/designer/connectionitems.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/kdevdesigner/designer/connectionitems.cpp b/kdevdesigner/designer/connectionitems.cpp
index 9f0c2b5e..322d9e4b 100644
--- a/kdevdesigner/designer/connectionitems.cpp
+++ b/kdevdesigner/designer/connectionitems.cpp
@@ -122,26 +122,26 @@ void ConnectionItem::slotChanged( const TQString & )
void ConnectionItem::setSender( SenderItem *i )
{
- connect( i, TQT_SIGNAL( currentSenderChanged( TQObject * ) ),
- this, TQT_SLOT( senderChanged( TQObject * ) ) );
+ connect( i, TQ_SIGNAL( currentSenderChanged( TQObject * ) ),
+ this, TQ_SLOT( senderChanged( TQObject * ) ) );
}
void ConnectionItem::setReceiver( ReceiverItem *i )
{
- connect( i, TQT_SIGNAL( currentReceiverChanged( TQObject * ) ),
- this, TQT_SLOT( receiverChanged( TQObject * ) ) );
+ connect( i, TQ_SIGNAL( currentReceiverChanged( TQObject * ) ),
+ this, TQ_SLOT( receiverChanged( TQObject * ) ) );
}
void ConnectionItem::setSignal( SignalItem *i )
{
- connect( i, TQT_SIGNAL( currentSignalChanged( const TQString & ) ),
- this, TQT_SLOT( signalChanged( const TQString & ) ) );
+ connect( i, TQ_SIGNAL( currentSignalChanged( const TQString & ) ),
+ this, TQ_SLOT( signalChanged( const TQString & ) ) );
}
void ConnectionItem::setSlot( SlotItem *i )
{
- connect( i, TQT_SIGNAL( currentSlotChanged( const TQString & ) ),
- this, TQT_SLOT( slotChanged( const TQString & ) ) );
+ connect( i, TQ_SIGNAL( currentSlotChanged( const TQString & ) ),
+ this, TQ_SLOT( slotChanged( const TQString & ) ) );
}
void ConnectionItem::paint( TQPainter *p, const TQColorGroup &cg,
@@ -245,8 +245,8 @@ TQWidget *SenderItem::createEditor() const
{
TQComboBox *cb = (TQComboBox*)ConnectionItem::createEditor();
cb->listBox()->setMinimumWidth( cb->fontMetrics().width( "01234567890123456789012345678901234567890123456789" ) );
- connect( cb, TQT_SIGNAL( activated( const TQString & ) ),
- this, TQT_SLOT( senderChanged( const TQString & ) ) );
+ connect( cb, TQ_SIGNAL( activated( const TQString & ) ),
+ this, TQ_SLOT( senderChanged( const TQString & ) ) );
return cb;
}
@@ -302,8 +302,8 @@ TQWidget *ReceiverItem::createEditor() const
{
TQComboBox *cb = (TQComboBox*)ConnectionItem::createEditor();
cb->listBox()->setMinimumWidth( cb->fontMetrics().width( "01234567890123456789012345678901234567890123456789" ) );
- connect( cb, TQT_SIGNAL( activated( const TQString & ) ),
- this, TQT_SLOT( receiverChanged( const TQString & ) ) );
+ connect( cb, TQ_SIGNAL( activated( const TQString & ) ),
+ this, TQ_SLOT( receiverChanged( const TQString & ) ) );
return cb;
}
@@ -371,8 +371,8 @@ TQWidget *SignalItem::createEditor() const
{
TQComboBox *cb = (TQComboBox*)ConnectionItem::createEditor();
cb->listBox()->setMinimumWidth( cb->fontMetrics().width( "01234567890123456789012345678901234567890123456789" ) );
- connect( cb, TQT_SIGNAL( activated( const TQString & ) ),
- this, TQT_SIGNAL( currentSignalChanged( const TQString & ) ) );
+ connect( cb, TQ_SIGNAL( activated( const TQString & ) ),
+ this, TQ_SIGNAL( currentSignalChanged( const TQString & ) ) );
return cb;
}
@@ -502,8 +502,8 @@ TQWidget *SlotItem::createEditor() const
{
TQComboBox *cb = (TQComboBox*)ConnectionItem::createEditor();
cb->listBox()->setMinimumWidth( cb->fontMetrics().width( "01234567890123456789012345678901234567890123456789" ) );
- connect( cb, TQT_SIGNAL( activated( const TQString & ) ),
- this, TQT_SIGNAL( currentSlotChanged( const TQString & ) ) );
+ connect( cb, TQ_SIGNAL( activated( const TQString & ) ),
+ this, TQ_SIGNAL( currentSlotChanged( const TQString & ) ) );
return cb;
}