summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/connectiondialog.ui.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-14 14:24:33 +0900
committerMichele Calgaro <[email protected]>2024-01-14 14:24:33 +0900
commit35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c (patch)
treebb3c7d39dd8592f3676cbd663a3cc42c7b288b41 /kdevdesigner/designer/connectiondialog.ui.h
parent59f10590f7686267df6e294111a2ff5661089026 (diff)
downloadtdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.tar.gz
tdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kdevdesigner/designer/connectiondialog.ui.h')
-rw-r--r--kdevdesigner/designer/connectiondialog.ui.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdevdesigner/designer/connectiondialog.ui.h b/kdevdesigner/designer/connectiondialog.ui.h
index ea73e46c..0e0877da 100644
--- a/kdevdesigner/designer/connectiondialog.ui.h
+++ b/kdevdesigner/designer/connectiondialog.ui.h
@@ -69,10 +69,10 @@ static TQPixmap *validConnection = 0;
void ConnectionDialog::init()
{
- connect( connectionsTable, TQT_SIGNAL( currentChanged( int, int ) ),
- this, TQT_SLOT( updateEditSlotsButton() ) );
- connect( connectionsTable, TQT_SIGNAL( resorted() ),
- this, TQT_SLOT( updateConnectionContainers() ) );
+ connect( connectionsTable, TQ_SIGNAL( currentChanged( int, int ) ),
+ this, TQ_SLOT( updateEditSlotsButton() ) );
+ connect( connectionsTable, TQ_SIGNAL( resorted() ),
+ this, TQ_SLOT( updateConnectionContainers() ) );
buttonEditSlots->setEnabled( FALSE );
if ( !invalidConnection ) {
@@ -144,13 +144,13 @@ ConnectionContainer *ConnectionDialog::addConnection( TQObject *sender, TQObject
re->setSlot( sl );
sl->setSlot( sl );
- connect( re, TQT_SIGNAL( currentReceiverChanged( TQObject * ) ),
- this, TQT_SLOT( updateEditSlotsButton() ) );
+ connect( re, TQ_SIGNAL( currentReceiverChanged( TQObject * ) ),
+ this, TQ_SLOT( updateEditSlotsButton() ) );
ConnectionContainer *c = new ConnectionContainer( this, se, si, re, sl, row );
connections.append( c );
- connect( c, TQT_SIGNAL( changed( ConnectionContainer * ) ),
- this, TQT_SLOT( updateConnectionState( ConnectionContainer * ) ) );
+ connect( c, TQ_SIGNAL( changed( ConnectionContainer * ) ),
+ this, TQ_SLOT( updateConnectionState( ConnectionContainer * ) ) );
connectionsTable->setCurrentCell( row, 0 );