summaryrefslogtreecommitdiffstats
path: root/kradio3/plugins/timeshifter/timeshifter-configuration.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 03:43:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 03:43:07 +0000
commit70b9eea2ba01c3691497f49e4c45cb070c16193c (patch)
tree9a6df61aa247a27275aad9c5245e419e89c2c640 /kradio3/plugins/timeshifter/timeshifter-configuration.h
parent998c1384ace4ae4655997c181fa33242148cd0a4 (diff)
downloadtderadio-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/plugins/timeshifter/timeshifter-configuration.h')
-rw-r--r--kradio3/plugins/timeshifter/timeshifter-configuration.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/kradio3/plugins/timeshifter/timeshifter-configuration.h b/kradio3/plugins/timeshifter/timeshifter-configuration.h
index 7d34c3d..6c0b722 100644
--- a/kradio3/plugins/timeshifter/timeshifter-configuration.h
+++ b/kradio3/plugins/timeshifter/timeshifter-configuration.h
@@ -27,15 +27,16 @@
#include "timeshifter-configuration-ui.h"
-class QWidget;
+class TQWidget;
class TimeShifter;
class TimeShifterConfiguration : public TimeShifterConfigurationUI,
public ISoundStreamClient
{
Q_OBJECT
+ TQ_OBJECT
public :
- TimeShifterConfiguration (QWidget *parent, TimeShifter *shifter);
+ TimeShifterConfiguration (TQWidget *tqparent, TimeShifter *shifter);
~TimeShifterConfiguration ();
bool connectI (Interface *i);
@@ -48,11 +49,11 @@ public :
RECEIVERS:
void noticeConnectedI (ISoundStreamServer *s, bool pointer_valid);
- bool noticePlaybackChannelsChanged(const QString & /*client_id*/, const QStringList &/*channels*/);
+ bool noticePlaybackChannelsChanged(const TQString & /*client_id*/, const TQStringList &/*channels*/);
protected:
- bool setPlaybackMixer(const QString &_mixer_id, const QString &Channel);
+ bool setPlaybackMixer(const TQString &_mixer_id, const TQString &Channel);
protected slots:
@@ -70,8 +71,8 @@ protected:
bool m_ignoreGUIChanges;
int m_myControlChange;
- typedef GUIListHelper<QComboBox, QString> StringListHelper;
- typedef GUISimpleListHelper<QComboBox> ChannelListHelper;
+ typedef GUIListHelper<TQComboBox, TQString> StringListHelper;
+ typedef GUISimpleListHelper<TQComboBox> ChannelListHelper;
StringListHelper m_PlaybackMixerHelper;
ChannelListHelper m_PlaybackChannelHelper;