Changeset 1597
- Timestamp:
- 03/03/10 15:27:22 (3 years ago)
- Location:
- branches/advancedMidiLearn/gui/src
- Files:
-
- 2 modified
-
Mixer/MixerLine.cpp (modified) (1 diff)
-
PlayerControl.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/advancedMidiLearn/gui/src/Mixer/MixerLine.cpp
r1593 r1597 539 539 m_pMuteBtn->move( 20, 32 ); 540 540 connect( m_pMuteBtn, SIGNAL( clicked(Button*) ), this, SLOT( muteClicked(Button*) ) ); 541 541 m_pMuteBtn->setAction( new Action("MUTE_TOGGLE")); 542 542 } 543 543 -
branches/advancedMidiLearn/gui/src/PlayerControl.cpp
r1487 r1597 114 114 connect(m_pRecBtn, SIGNAL(rightClicked(Button*)), this, SLOT(recBtnRightClicked(Button*))); 115 115 116 116 117 // Record+delete button 117 118 m_pRecDelBtn = new ToggleButton( … … 143 144 m_pPlayBtn->setToolTip( trUtf8("Play/ Pause") ); 144 145 connect(m_pPlayBtn, SIGNAL(clicked(Button*)), this, SLOT(playBtnClicked(Button*))); 146 Action* pAction = new Action("PLAY"); 147 m_pPlayBtn->setAction( pAction ); 148 145 149 146 150 // Stop button … … 155 159 m_pStopBtn->setToolTip( trUtf8("Stop") ); 156 160 connect(m_pStopBtn, SIGNAL(clicked(Button*)), this, SLOT(stopBtnClicked(Button*))); 161 pAction = new Action("STOP"); 162 m_pStopBtn->setAction( pAction ); 157 163 158 164 // Fast forward button