summaryrefslogtreecommitdiffstats
path: root/src/stationselector.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:38:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 17:30:01 +0900
commit9c57237885c152de17e98d12227a706a158708d0 (patch)
tree4a0e5ac5fb306e1e4b8ddb5436ca595722be17ae /src/stationselector.cpp
parent3dbd1166c53e8db554a4b6c8b67e7d91a78aab00 (diff)
downloadtderadio-9c572378.tar.gz
tderadio-9c572378.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 269551cf8e80ed83b626bb793f0f9f15b5f2809c)
Diffstat (limited to 'src/stationselector.cpp')
-rw-r--r--src/stationselector.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stationselector.cpp b/src/stationselector.cpp
index d604ea8..c231229 100644
--- a/src/stationselector.cpp
+++ b/src/stationselector.cpp
@@ -30,10 +30,10 @@ StationSelector::StationSelector (TQWidget *parent)
: StationSelectorUI(parent),
m_dirty(true)
{
- TQObject::connect(buttonToLeft, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotButtonToLeft()));
- TQObject::connect(buttonToRight, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotButtonToRight()));
- TQObject::connect(listAvailable, TQT_SIGNAL(sigStationsReceived(const TQStringList&)), this, TQT_SLOT(slotMoveToLeft(const TQStringList&)));
- TQObject::connect(listSelected, TQT_SIGNAL(sigStationsReceived(const TQStringList&)), this, TQT_SLOT(slotMoveToRight(const TQStringList&)));
+ TQObject::connect(buttonToLeft, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotButtonToLeft()));
+ TQObject::connect(buttonToRight, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotButtonToRight()));
+ TQObject::connect(listAvailable, TQ_SIGNAL(sigStationsReceived(const TQStringList&)), this, TQ_SLOT(slotMoveToLeft(const TQStringList&)));
+ TQObject::connect(listSelected, TQ_SIGNAL(sigStationsReceived(const TQStringList&)), this, TQ_SLOT(slotMoveToRight(const TQStringList&)));
listSelected->setSelectionMode(TQListView::Extended);
listAvailable->setSelectionMode(TQListView::Extended);