summaryrefslogtreecommitdiffstats
path: root/src/fileview.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/fileview.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/fileview.cpp')
-rw-r--r--src/fileview.cpp12
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*)));
}
/**