From b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 16:37:45 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27) --- src/searchlist.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/searchlist.cpp') diff --git a/src/searchlist.cpp b/src/searchlist.cpp index b784ee5..38443f2 100644 --- a/src/searchlist.cpp +++ b/src/searchlist.cpp @@ -114,16 +114,16 @@ SearchList::SearchList(int nSearchCol, TQWidget* pParent, const char* szName) : TQToolTip::remove(m_pList); m_pToolTip = new ListToolTip(this); - connect(m_pEdit, SIGNAL(textChanged(const TQString&)), this, - SLOT(slotFindItem(const TQString&))); - connect(m_pList, SIGNAL(doubleClicked(TQListViewItem*)), this, - SLOT(slotItemSelected(TQListViewItem*))); - connect(m_pList, SIGNAL(returnPressed(TQListViewItem*)), this, - SLOT(slotItemSelected(TQListViewItem*))); - connect(m_pEdit, SIGNAL(returnPressed()), this, - SLOT(slotItemSelected())); - connect(m_pEdit, SIGNAL(keyPressed(TQKeyEvent*)), this, - SLOT(slotKeyPressed(TQKeyEvent*))); + connect(m_pEdit, TQ_SIGNAL(textChanged(const TQString&)), this, + TQ_SLOT(slotFindItem(const TQString&))); + connect(m_pList, TQ_SIGNAL(doubleClicked(TQListViewItem*)), this, + TQ_SLOT(slotItemSelected(TQListViewItem*))); + connect(m_pList, TQ_SIGNAL(returnPressed(TQListViewItem*)), this, + TQ_SLOT(slotItemSelected(TQListViewItem*))); + connect(m_pEdit, TQ_SIGNAL(returnPressed()), this, + TQ_SLOT(slotItemSelected())); + connect(m_pEdit, TQ_SIGNAL(keyPressed(TQKeyEvent*)), this, + TQ_SLOT(slotKeyPressed(TQKeyEvent*))); } /** -- cgit v1.2.3