summaryrefslogtreecommitdiffstats
path: root/src/treewidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:45 +0900
commit11f3716a1c82b43f92dc32083101558f3ec47f27 (patch)
tree0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/treewidget.cpp
parentd399e3a2c6c365c540fe67bc648bacefe4cca707 (diff)
downloadkscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz
kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/treewidget.cpp')
-rw-r--r--src/treewidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/treewidget.cpp b/src/treewidget.cpp
index db0a26b..cae5edb 100644
--- a/src/treewidget.cpp
+++ b/src/treewidget.cpp
@@ -43,8 +43,8 @@ TreeWidget::TreeWidget(TQWidget* pParent, const char* szName) :
m_pDriver = new QueryViewDriver(this, this);
// Query a tree item when it is expanded for the first time
- connect(this, SIGNAL(expanded(TQListViewItem*)), this,
- SLOT(slotQueryItem(TQListViewItem*)));
+ connect(this, TQ_SIGNAL(expanded(TQListViewItem*)), this,
+ TQ_SLOT(slotQueryItem(TQListViewItem*)));
}
/**