summaryrefslogtreecommitdiffstats
path: root/sidebar/baghirasidebar.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:58:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:15:44 +0900
commit8f6829a20f2439f2bcfb7f39ce64eef133e93234 (patch)
tree1dc5e354119d6224d9f90d93647947db49b88bdb /sidebar/baghirasidebar.cpp
parent210aaadd2d93af34c05914ba67a83895458601f9 (diff)
downloadtde-style-baghira-8f6829a20f2439f2bcfb7f39ce64eef133e93234.tar.gz
tde-style-baghira-8f6829a20f2439f2bcfb7f39ce64eef133e93234.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 936a0c73f552cce101c9aa5ec64800fad86542a2)
Diffstat (limited to 'sidebar/baghirasidebar.cpp')
-rw-r--r--sidebar/baghirasidebar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sidebar/baghirasidebar.cpp b/sidebar/baghirasidebar.cpp
index 5df1453..444affc 100644
--- a/sidebar/baghirasidebar.cpp
+++ b/sidebar/baghirasidebar.cpp
@@ -14,8 +14,8 @@ baghiraSidebar::baghiraSidebar(TDEInstance *inst,TQObject *parent,TQWidget *widg
{
scrollView = new LinkView(widgetParent);
scrollView->setHScrollBarMode(TQScrollView::AlwaysOff);
- connect (scrollView->Hardware(), SIGNAL(clicked(TQListBoxItem *)), this, SLOT(callURL(TQListBoxItem *)));
- connect (scrollView->Locations(), SIGNAL(clicked(TQListBoxItem *)), this, SLOT(callURL(TQListBoxItem *)));
+ connect (scrollView->Hardware(), TQ_SIGNAL(clicked(TQListBoxItem *)), this, TQ_SLOT(callURL(TQListBoxItem *)));
+ connect (scrollView->Locations(), TQ_SIGNAL(clicked(TQListBoxItem *)), this, TQ_SLOT(callURL(TQListBoxItem *)));
}
baghiraSidebar::~baghiraSidebar()