diff options
Diffstat (limited to 'noatun-plugins/alsaplayer')
-rw-r--r-- | noatun-plugins/alsaplayer/seeker.cpp | 4 | ||||
-rw-r--r-- | noatun-plugins/alsaplayer/userinterface.cpp | 60 |
2 files changed, 32 insertions, 32 deletions
diff --git a/noatun-plugins/alsaplayer/seeker.cpp b/noatun-plugins/alsaplayer/seeker.cpp index b440b2b..1ddd894 100644 --- a/noatun-plugins/alsaplayer/seeker.cpp +++ b/noatun-plugins/alsaplayer/seeker.cpp @@ -29,9 +29,9 @@ Seeker::Seeker(TQWidget * parent, const char * name) : L33tSlider(0, 1000, 10, 0,TQt::Horizontal, parent, name) { - connect(this, TQT_SIGNAL(userChanged(int)), TQT_SLOT(slotValueChanged(int))); + connect(this, TQ_SIGNAL(userChanged(int)), TQ_SLOT(slotValueChanged(int))); - connect(napp->player(), TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout())); + connect(napp->player(), TQ_SIGNAL(timeout()), TQ_SLOT(slotTimeout())); } Seeker::~Seeker() diff --git a/noatun-plugins/alsaplayer/userinterface.cpp b/noatun-plugins/alsaplayer/userinterface.cpp index 1a3820c..7d1e840 100644 --- a/noatun-plugins/alsaplayer/userinterface.cpp +++ b/noatun-plugins/alsaplayer/userinterface.cpp @@ -60,92 +60,92 @@ AlsaPlayer::AlsaPlayer() connect ( playlistButton, - TQT_SIGNAL(clicked()), + TQ_SIGNAL(clicked()), napp->player(), - TQT_SLOT(toggleListView()) + TQ_SLOT(toggleListView()) ); connect ( previousButton, - TQT_SIGNAL(clicked()), + TQ_SIGNAL(clicked()), napp->player(), - TQT_SLOT(back()) + TQ_SLOT(back()) ); connect ( nextButton, - TQT_SIGNAL(clicked()), + TQ_SIGNAL(clicked()), napp->player(), - TQT_SLOT(forward()) + TQ_SLOT(forward()) ); connect ( stopButton, - TQT_SIGNAL(clicked()), + TQ_SIGNAL(clicked()), napp->player(), - TQT_SLOT(stop()) + TQ_SLOT(stop()) ); connect ( playButton, - TQT_SIGNAL(clicked()), + TQ_SIGNAL(clicked()), napp->player(), - TQT_SLOT(playpause()) + TQ_SLOT(playpause()) ); - connect(napp, TQT_SIGNAL(hideYourself()), TQT_SLOT(hide())); - connect(napp, TQT_SIGNAL(showYourself()), TQT_SLOT(show())); + connect(napp, TQ_SIGNAL(hideYourself()), TQ_SLOT(hide())); + connect(napp, TQ_SIGNAL(showYourself()), TQ_SLOT(show())); - connect(napp->player(), TQT_SIGNAL(playlistShown()), TQT_SLOT(slotPlayListShown())); - connect(napp->player(), TQT_SIGNAL(playlistHidden()), TQT_SLOT(slotPlayListHidden())); - connect(napp->player(), TQT_SIGNAL(playing()), TQT_SLOT(slotPlaying())); - connect(napp->player(), TQT_SIGNAL(stopped()), TQT_SLOT(slotStopped())); - connect(napp->player(), TQT_SIGNAL(paused()), TQT_SLOT(slotPaused())); + connect(napp->player(), TQ_SIGNAL(playlistShown()), TQ_SLOT(slotPlayListShown())); + connect(napp->player(), TQ_SIGNAL(playlistHidden()), TQ_SLOT(slotPlayListHidden())); + connect(napp->player(), TQ_SIGNAL(playing()), TQ_SLOT(slotPlaying())); + connect(napp->player(), TQ_SIGNAL(stopped()), TQ_SLOT(slotStopped())); + connect(napp->player(), TQ_SIGNAL(paused()), TQ_SLOT(slotPaused())); - connect(napp->player(), TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout())); - connect(napp->player(), TQT_SIGNAL(changed()), TQT_SLOT(slotTrackChanged())); + connect(napp->player(), TQ_SIGNAL(timeout()), TQ_SLOT(slotTimeout())); + connect(napp->player(), TQ_SIGNAL(changed()), TQ_SLOT(slotTrackChanged())); connect ( napp->player(), - TQT_SIGNAL(volumeChanged(int)), - TQT_SLOT(slotVolumeChanged(int)) + TQ_SIGNAL(volumeChanged(int)), + TQ_SLOT(slotVolumeChanged(int)) ); connect ( new AlsaPlayerConfigModule(this), - TQT_SIGNAL(saved()), - TQT_SLOT(slotConfigChanged()) + TQ_SIGNAL(saved()), + TQ_SLOT(slotConfigChanged()) ); connect ( volumeSlider, - TQT_SIGNAL(valueChanged(int)), + TQ_SIGNAL(valueChanged(int)), napp->player(), - TQT_SLOT(setVolume(int)) + TQ_SLOT(setVolume(int)) ); connect ( forwardButton, - TQT_SIGNAL(clicked()), - TQT_SLOT(slotForward()) + TQ_SIGNAL(clicked()), + TQ_SLOT(slotForward()) ); connect ( pauseButton, - TQT_SIGNAL(clicked()), - TQT_SLOT(slotPause()) + TQ_SIGNAL(clicked()), + TQ_SLOT(slotPause()) ); - connect(speedSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotSetSpeed(int))); + connect(speedSlider, TQ_SIGNAL(valueChanged(int)), TQ_SLOT(slotSetSpeed(int))); menuButton->setPopup(NoatunStdAction::ContextMenu::contextMenu()); |