diff options
Diffstat (limited to 'languages/cpp/app_templates/noatunui')
| -rw-r--r-- | languages/cpp/app_templates/noatunui/plugin_impl.cpp | 42 | 
1 files changed, 21 insertions, 21 deletions
| diff --git a/languages/cpp/app_templates/noatunui/plugin_impl.cpp b/languages/cpp/app_templates/noatunui/plugin_impl.cpp index 89ad08e5..a0c0d0ee 100644 --- a/languages/cpp/app_templates/noatunui/plugin_impl.cpp +++ b/languages/cpp/app_templates/noatunui/plugin_impl.cpp @@ -33,45 +33,45 @@      mBack=new TQPushButton(this);      mBack->setFixedSize(buttonSize,buttonSize);      mBack->setPixmap(BarIcon("noatunback")); -    connect(mBack, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(back())); +    connect(mBack, TQ_SIGNAL(clicked()), napp->player(), TQ_SLOT(back()));      TQToolTip::add(mBack,i18n("Back"));      mStop=new TQPushButton(this);      mStop->setFixedSize(buttonSize,buttonSize);      mStop->setPixmap(BarIcon("noatunstop")); -    connect(mStop, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(stop())); +    connect(mStop, TQ_SIGNAL(clicked()), napp->player(), TQ_SLOT(stop()));      TQToolTip::add(mStop, i18n("Stop"));      mPlay=new TQPushButton(this);      mPlay->setToggleButton(true);      mPlay->setFixedSize(buttonSize,buttonSize);      mPlay->setPixmap(BarIcon("noatunplay")); -    connect(mPlay, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(playpause())); +    connect(mPlay, TQ_SIGNAL(clicked()), napp->player(), TQ_SLOT(playpause()));      TQToolTip::add(mPlay, i18n("Play"));      mForward=new TQPushButton(this);      mForward->setFixedSize(buttonSize,buttonSize);      mForward->setPixmap(BarIcon("noatunforward")); -    connect(mForward, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(forward())); +    connect(mForward, TQ_SIGNAL(clicked()), napp->player(), TQ_SLOT(forward()));      TQToolTip::add(mForward, i18n("Forward"));      mPlaylist=new TQPushButton(this);      mPlaylist->setToggleButton(true);      mPlaylist->setFixedSize(buttonSize,buttonSize);      mPlaylist->setPixmap(BarIcon("noatunplaylist")); -    connect(mPlaylist, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(toggleListView())); +    connect(mPlaylist, TQ_SIGNAL(clicked()), napp->player(), TQ_SLOT(toggleListView()));      TQToolTip::add(mPlaylist, i18n("Playlist"));      mLoop=new TQPushButton(this);      mLoop->setFixedSize(buttonSize,buttonSize);      mLoop->setPixmap(BarIcon("noatunloopnone")); -    connect(mLoop, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(loop())); +    connect(mLoop, TQ_SIGNAL(clicked()), napp->player(), TQ_SLOT(loop()));      TQToolTip::add(mLoop, i18n("Change loop style"));      mPopup=new TQPushButton(this);      mPopup->setFixedSize(buttonSize,buttonSize);      mPopup->setPixmap(BarIcon("noatun")); -    connect(mPopup, TQT_SIGNAL(clicked()), TQT_SLOT(popup())); +    connect(mPopup, TQ_SIGNAL(clicked()), TQ_SLOT(popup()));      mVolume=new L33tSlider(0,100,10,0,TQt::Horizontal, this); @@ -98,30 +98,30 @@      statusBar()->message(i18n("No File Loaded"));      statusBar()->insertItem("--:--/--:--", 1, 0, true); -    connect(napp, TQT_SIGNAL(hideYourself()), this, TQT_SLOT(hide()) ); -    connect(napp, TQT_SIGNAL(showYourself()), this, TQT_SLOT(show()) ); +    connect(napp, TQ_SIGNAL(hideYourself()), this, TQ_SLOT(hide()) ); +    connect(napp, TQ_SIGNAL(showYourself()), this, TQ_SLOT(show()) ); -    connect(napp->player(), TQT_SIGNAL(playing()), this, TQT_SLOT(slotPlaying())); -    connect(napp->player(), TQT_SIGNAL(stopped()), this, TQT_SLOT(slotStopped())); -    connect(napp->player(), TQT_SIGNAL(paused()), this, TQT_SLOT(slotPaused())); +    connect(napp->player(), TQ_SIGNAL(playing()), this, TQ_SLOT(slotPlaying())); +    connect(napp->player(), TQ_SIGNAL(stopped()), this, TQ_SLOT(slotStopped())); +    connect(napp->player(), TQ_SIGNAL(paused()), this, TQ_SLOT(slotPaused()));      napp->player()->handleButtons(); -    connect(napp->player(), TQT_SIGNAL(timeout()), this, TQT_SLOT(slotTimeout())); -    connect(napp->player(), TQT_SIGNAL(loopTypeChange(int)), this, TQT_SLOT(changeLoopType(int))); +    connect(napp->player(), TQ_SIGNAL(timeout()), this, TQ_SLOT(slotTimeout())); +    connect(napp->player(), TQ_SIGNAL(loopTypeChange(int)), this, TQ_SLOT(changeLoopType(int)));      /* This skipToWrapper is needed to pass milliseconds to Player() as everybody       * below the GUI is based on milliseconds instead of some unprecise thingy       * like seconds or mille */ -    connect(seeker(), TQT_SIGNAL(userChanged(int)), this, TQT_SLOT(skipToWrapper(int))); -    connect(this, TQT_SIGNAL(skipTo(int)), napp->player(), TQT_SLOT(skipTo(int))); -    connect(seeker(), TQT_SIGNAL(sliderMoved(int)), TQT_SLOT(sliderMoved(int))); +    connect(seeker(), TQ_SIGNAL(userChanged(int)), this, TQ_SLOT(skipToWrapper(int))); +    connect(this, TQ_SIGNAL(skipTo(int)), napp->player(), TQ_SLOT(skipTo(int))); +    connect(seeker(), TQ_SIGNAL(sliderMoved(int)), TQ_SLOT(sliderMoved(int))); -    connect(mVolume, TQT_SIGNAL(sliderMoved(int)), napp->player(), TQT_SLOT(setVolume(int))); -    connect(mVolume, TQT_SIGNAL(userChanged(int)), napp->player(), TQT_SLOT(setVolume(int))); +    connect(mVolume, TQ_SIGNAL(sliderMoved(int)), napp->player(), TQ_SLOT(setVolume(int))); +    connect(mVolume, TQ_SIGNAL(userChanged(int)), napp->player(), TQ_SLOT(setVolume(int))); -    connect(napp->player(), TQT_SIGNAL(playlistShown()), TQT_SLOT(playlistShown())); -    connect(napp->player(), TQT_SIGNAL(playlistHidden()), TQT_SLOT(playlistHidden())); +    connect(napp->player(), TQ_SIGNAL(playlistShown()), TQ_SLOT(playlistShown())); +    connect(napp->player(), TQ_SIGNAL(playlistHidden()), TQ_SLOT(playlistHidden()));      // Event Filter for the RMB      for (TQPtrListIterator<TQObject> i(*children()); i.current(); ++i) | 
