summaryrefslogtreecommitdiffstats
path: root/src/searchlist.cpp
diff options
context:
space:
mode:
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*)));
}
/**