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-28 16:37:45 +0900 |
commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/treewidget.cpp | |
parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
download | kscope-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.cpp | 4 |
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*))); } /** |