summaryrefslogtreecommitdiffstats
path: root/src/searchlist.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-28 16:37:45 +0900
committerMichele Calgaro <[email protected]>2023-12-28 16:37:45 +0900
commit11f3716a1c82b43f92dc32083101558f3ec47f27 (patch)
tree0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/searchlist.cpp
parentd399e3a2c6c365c540fe67bc648bacefe4cca707 (diff)
downloadkscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz
kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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*)));
}
/**