summaryrefslogtreecommitdiffstats
path: root/kradio3/src/include/stationselector.h
diff options
context:
space:
mode:
Diffstat (limited to 'kradio3/src/include/stationselector.h')
-rw-r--r--kradio3/src/include/stationselector.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/kradio3/src/include/stationselector.h b/kradio3/src/include/stationselector.h
index 6842877..432b870 100644
--- a/kradio3/src/include/stationselector.h
+++ b/kradio3/src/include/stationselector.h
@@ -22,7 +22,7 @@
#include <config.h>
#endif
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include "radio_interfaces.h"
#include "stationselection_interfaces.h"
@@ -39,8 +39,9 @@ class StationSelector : public StationSelectorUI,
public IStationSelectionClient
{
Q_OBJECT
+ TQ_OBJECT
public :
- StationSelector (QWidget *parent);
+ StationSelector (TQWidget *tqparent);
~StationSelector ();
bool connectI (Interface *i);
@@ -48,14 +49,14 @@ public :
// IStationSelectionClient
- bool noticeStationSelectionChanged(const QStringList &sl);
+ bool noticeStationSelectionChanged(const TQStringList &sl);
// IRadioClient
bool noticePowerChanged(bool /*on*/) { return false; }
bool noticeStationChanged (const RadioStation &, int /*idx*/) { return false; }
bool noticeStationsChanged(const StationList &sl);
- bool noticePresetFileChanged(const QString &/*f*/) { return false; }
+ bool noticePresetFileChanged(const TQString &/*f*/) { return false; }
bool noticeCurrentSoundStreamIDChanged(SoundStreamID) { return false; }
@@ -68,8 +69,8 @@ protected slots:
void slotButtonToLeft();
void slotButtonToRight();
- void slotMoveToRight(const QStringList &list);
- void slotMoveToLeft(const QStringList &list);
+ void slotMoveToRight(const TQStringList &list);
+ void slotMoveToLeft(const TQStringList &list);
void slotOK();
void slotCancel();
@@ -81,14 +82,14 @@ signals:
protected:
- void moveItem (RadioStationListView *fromListView, QStringList &fromIDList,
- QListViewItem *item, int fromIdx,
- RadioStationListView *toListView, QStringList &toIDList);
+ void moveItem (RadioStationListView *fromListView, TQStringList &fromIDList,
+ TQListViewItem *item, int fromIdx,
+ RadioStationListView *toListView, TQStringList &toIDList);
void updateListViews();
// station ids
- QStringList m_stationIDsAvailable,
+ TQStringList m_stationIDsAvailable,
m_stationIDsSelected,
m_stationIDsNotDisplayed,
m_stationIDsAll;