diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:20:37 +0900 |
commit | b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/searchlist.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-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.cpp | 20 |
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*))); } /** |