summaryrefslogtreecommitdiffstats
path: root/src/searchlist.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:20:37 +0900
commitb035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch)
tree0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/searchlist.cpp
parent3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff)
downloadkscope-b035a6c4.tar.gz
kscope-b035a6c4.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/searchlist.cpp')
-rw-r--r--src/searchlist.cpp20
1 files changed, 10 insertions, 10 deletions
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*)));
}
/**