summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/listboxeditorimpl.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/listboxeditorimpl.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/listboxeditorimpl.cpp')
-rw-r--r--kdevdesigner/designer/listboxeditorimpl.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdevdesigner/designer/listboxeditorimpl.cpp b/kdevdesigner/designer/listboxeditorimpl.cpp
index 85a321ab..67720ed9 100644
--- a/kdevdesigner/designer/listboxeditorimpl.cpp
+++ b/kdevdesigner/designer/listboxeditorimpl.cpp
@@ -43,7 +43,7 @@
ListBoxEditor::ListBoxEditor( TQWidget *parent, TQWidget *editWidget, FormWindow *fw )
: ListBoxEditorBase( parent, 0, TRUE ), formwindow( fw )
{
- connect( helpButton, TQT_SIGNAL( clicked() ), MainWindow::self, TQT_SLOT( showDialogHelp() ) );
+ connect( helpButton, TQ_SIGNAL( clicked() ), MainWindow::self, TQ_SLOT( showDialogHelp() ) );
listbox = (TQListBox*)editWidget;
itemText->setText( "" );
@@ -65,8 +65,8 @@ ListBoxEditor::ListBoxEditor( TQWidget *parent, TQWidget *editWidget, FormWindow
ListBoxDnd *editorDnd = new ListBoxDnd( preview );
editorDnd->setDragMode( ListBoxDnd::Internal | ListBoxDnd::Move );
- TQObject::connect( editorDnd, TQT_SIGNAL( dropped( TQListBoxItem * ) ),
- editorDnd, TQT_SLOT( confirmDrop( TQListBoxItem * ) ) );
+ TQObject::connect( editorDnd, TQ_SIGNAL( dropped( TQListBoxItem * ) ),
+ editorDnd, TQ_SLOT( confirmDrop( TQListBoxItem * ) ) );
ListBoxRename *editorRename = new ListBoxRename( preview );
@@ -76,9 +76,9 @@ ListBoxEditor::ListBoxEditor( TQWidget *parent, TQWidget *editWidget, FormWindow
while ( (obj = it.current()) != 0 ) {
++it;
TQObject::connect( editorRename,
- TQT_SIGNAL( itemTextChanged( const TQString & ) ),
+ TQ_SIGNAL( itemTextChanged( const TQString & ) ),
obj,
- TQT_SLOT( setText( const TQString & ) ) );
+ TQ_SLOT( setText( const TQString & ) ) );
}
delete l;