summaryrefslogtreecommitdiffstats
path: root/src/radiostation-listview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-02 11:38:29 +0900
committerMichele Calgaro <[email protected]>2024-01-02 11:38:29 +0900
commit269551cf8e80ed83b626bb793f0f9f15b5f2809c (patch)
tree8acb279ab4af2e99e4db20e28ddd8fc1148a63f1 /src/radiostation-listview.cpp
parent887adb8a4498cf2537919d863a2554e4be379249 (diff)
downloadtderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.tar.gz
tderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/radiostation-listview.cpp')
-rw-r--r--src/radiostation-listview.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/radiostation-listview.cpp b/src/radiostation-listview.cpp
index 4c7fe64..cac9ce5 100644
--- a/src/radiostation-listview.cpp
+++ b/src/radiostation-listview.cpp
@@ -37,14 +37,14 @@ RadioStationListView::RadioStationListView(TQWidget *parent, const char *name)
setAllColumnsShowFocus(true);
setSorting(-1);
- TQObject::connect(this, TQT_SIGNAL(spacePressed(TQListViewItem*)),
- this, TQT_SLOT(slotStationActivation(TQListViewItem* )));
- TQObject::connect(this, TQT_SIGNAL(returnPressed(TQListViewItem*)),
- this, TQT_SLOT(slotStationActivation(TQListViewItem* )));
- TQObject::connect(this, TQT_SIGNAL(doubleClicked(TQListViewItem*)),
- this, TQT_SLOT(slotStationActivation(TQListViewItem *)));
- TQObject::connect(this, TQT_SIGNAL(currentChanged(TQListViewItem*)),
- this, TQT_SLOT(slotCurrentStationChanged(TQListViewItem *)));
+ TQObject::connect(this, TQ_SIGNAL(spacePressed(TQListViewItem*)),
+ this, TQ_SLOT(slotStationActivation(TQListViewItem* )));
+ TQObject::connect(this, TQ_SIGNAL(returnPressed(TQListViewItem*)),
+ this, TQ_SLOT(slotStationActivation(TQListViewItem* )));
+ TQObject::connect(this, TQ_SIGNAL(doubleClicked(TQListViewItem*)),
+ this, TQ_SLOT(slotStationActivation(TQListViewItem *)));
+ TQObject::connect(this, TQ_SIGNAL(currentChanged(TQListViewItem*)),
+ this, TQ_SLOT(slotCurrentStationChanged(TQListViewItem *)));
setAcceptDrops(true);
}