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/fileview.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.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/fileview.cpp')
-rw-r--r-- | src/fileview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fileview.cpp b/src/fileview.cpp index f7ac9aa..a9c7b84 100644 --- a/src/fileview.cpp +++ b/src/fileview.cpp @@ -57,12 +57,12 @@ FileView::FileView(TQWidget* pParent, const char* szName, WFlags fl) : // Send the fileRequested() signal whenever a file is selected in either // the list or the tree - connect(m_pFileList, SIGNAL(fileRequested(const TQString&, uint)), this, - SIGNAL(fileRequested(const TQString&, uint))); - connect(m_pFileTree, SIGNAL(doubleClicked(TQListViewItem*)), - this, SLOT(slotTreeItemSelected(TQListViewItem*))); - connect(m_pFileTree, SIGNAL(returnPressed(TQListViewItem*)), this, - SLOT(slotTreeItemSelected(TQListViewItem*))); + connect(m_pFileList, TQ_SIGNAL(fileRequested(const TQString&, uint)), this, + TQ_SIGNAL(fileRequested(const TQString&, uint))); + connect(m_pFileTree, TQ_SIGNAL(doubleClicked(TQListViewItem*)), + this, TQ_SLOT(slotTreeItemSelected(TQListViewItem*))); + connect(m_pFileTree, TQ_SIGNAL(returnPressed(TQListViewItem*)), this, + TQ_SLOT(slotTreeItemSelected(TQListViewItem*))); } /** |