diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 03:43:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 03:43:07 +0000 |
commit | 70b9eea2ba01c3691497f49e4c45cb070c16193c (patch) | |
tree | 9a6df61aa247a27275aad9c5245e419e89c2c640 /kradio3/src/stationselection_interfaces.cpp | |
parent | 998c1384ace4ae4655997c181fa33242148cd0a4 (diff) | |
download | tderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.tar.gz tderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.zip |
TQt4 port kradio
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kradio@1238952 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kradio3/src/stationselection_interfaces.cpp')
-rw-r--r-- | kradio3/src/stationselection_interfaces.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kradio3/src/stationselection_interfaces.cpp b/kradio3/src/stationselection_interfaces.cpp index b8d6fe9..4cdc84d 100644 --- a/kradio3/src/stationselection_interfaces.cpp +++ b/kradio3/src/stationselection_interfaces.cpp @@ -16,19 +16,19 @@ ***************************************************************************/ #include "include/stationselection_interfaces.h" -#include <qstringlist.h> +#include <tqstringlist.h> -IF_IMPL_SENDER ( IStationSelection::notifyStationSelectionChanged(const QStringList &sl), +IF_IMPL_SENDER ( IStationSelection::notifyStationSelectionChanged(const TQStringList &sl), noticeStationSelectionChanged(sl) ) -IF_IMPL_SENDER ( IStationSelectionClient::sendStationSelection(const QStringList &sl), +IF_IMPL_SENDER ( IStationSelectionClient::sendStationSelection(const TQStringList &sl), setStationSelection(sl) ) -static QStringList IStationSelectionClient_emptyList; +static TQStringList IStationSelectionClient_emptyList; -IF_IMPL_QUERY ( const QStringList & IStationSelectionClient::queryStationSelection(), +IF_IMPL_TQUERY ( const TQStringList & IStationSelectionClient::queryStationSelection(), getStationSelection(), IStationSelectionClient_emptyList ) |