summaryrefslogtreecommitdiffstats
path: root/src/tastylistview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:36:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 19:03:11 +0900
commita65bdf88e79355f01f13b9d755bf9945b37f249f (patch)
tree473abe47bcaebe293daf8ac9890e2245d7a168c8 /src/tastylistview.cpp
parent44e77ecb2474060fd9fc64487273b7d5c448f68c (diff)
downloadtastymenu-a65bdf88e79355f01f13b9d755bf9945b37f249f.tar.gz
tastymenu-a65bdf88e79355f01f13b9d755bf9945b37f249f.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 12fe60049b43f7299e1f0cde44ec812d68bb867e)
Diffstat (limited to 'src/tastylistview.cpp')
-rw-r--r--src/tastylistview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tastylistview.cpp b/src/tastylistview.cpp
index f958bfc..6aef4c7 100644
--- a/src/tastylistview.cpp
+++ b/src/tastylistview.cpp
@@ -44,8 +44,8 @@ TastyListView::TastyListView( TQWidget * parent, const char * name)
listItemTip = new TastyListViewToolTip(viewport(), this);
- connect(this, SIGNAL(onItem(TQListViewItem *) ), SLOT(slotOnItem(TQListViewItem *) ) );
- connect(onItemTimer, SIGNAL(timeout()), this, SLOT(slotTimeout()) );
+ connect(this, TQ_SIGNAL(onItem(TQListViewItem *) ), TQ_SLOT(slotOnItem(TQListViewItem *) ) );
+ connect(onItemTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotTimeout()) );
}