summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/listboxrename.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
commit35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c (patch)
treebb3c7d39dd8592f3676cbd663a3cc42c7b288b41 /kdevdesigner/designer/listboxrename.cpp
parent59f10590f7686267df6e294111a2ff5661089026 (diff)
downloadtdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.tar.gz
tdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdevdesigner/designer/listboxrename.cpp')
-rw-r--r--kdevdesigner/designer/listboxrename.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdevdesigner/designer/listboxrename.cpp b/kdevdesigner/designer/listboxrename.cpp
index e5b705b9..05999779 100644
--- a/kdevdesigner/designer/listboxrename.cpp
+++ b/kdevdesigner/designer/listboxrename.cpp
@@ -48,8 +48,8 @@ ListBoxRename::ListBoxRename( TQListBox * eventSource, const char * name )
ed->hide();
ed->setFrame( FALSE );
- TQObject::connect( ed, TQT_SIGNAL( returnPressed() ),
- this, TQT_SLOT( renameClickedItem() ) );
+ TQObject::connect( ed, TQ_SIGNAL( returnPressed() ),
+ this, TQ_SLOT( renameClickedItem() ) );
}
bool ListBoxRename::eventFilter( TQObject *, TQEvent * event )
@@ -63,7 +63,7 @@ bool ListBoxRename::eventFilter( TQObject *, TQEvent * event )
if ( clickedItem &&
clickedItem->isSelected() &&
(clickedItem == src->itemAt( pos )) ) {
- TQTimer::singleShot( 500, this, TQT_SLOT( showLineEdit() ) );
+ TQTimer::singleShot( 500, this, TQ_SLOT( showLineEdit() ) );
activity = FALSE; // no drags or clicks for 500 ms before we start the renaming
} else { // new item clicked
activity = TRUE;