/[svn]/qsampler/trunk/src/qsamplerChannelStrip.ui.h
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerChannelStrip.ui.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1016 by capela, Mon Jan 8 22:04:33 2007 UTC revision 1018 by capela, Wed Jan 10 19:39:00 2007 UTC
# Line 341  bool qsamplerChannelStrip::updateChannel Line 341  bool qsamplerChannelStrip::updateChannel
341          updateInstrumentName(false);          updateInstrumentName(false);
342    
343      // MIDI Port/Channel...      // MIDI Port/Channel...
344            QString sMidiPortChannel = QString::number(m_pChannel->midiPort()) + " / ";
345          if (m_pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL)          if (m_pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL)
346                  MidiPortChannelTextLabel->setText(tr("All"));                  sMidiPortChannel += tr("All");
347          else          else
348                  MidiPortChannelTextLabel->setText(QString::number(m_pChannel->midiChannel() + 1));                  sMidiPortChannel += QString::number(m_pChannel->midiChannel() + 1);
349            MidiPortChannelTextLabel->setText(sMidiPortChannel);
350    
351      // Instrument status...      // Instrument status...
352      int iInstrumentStatus = m_pChannel->instrumentStatus();      int iInstrumentStatus = m_pChannel->instrumentStatus();

Legend:
Removed from v.1016  
changed lines
  Added in v.1018

  ViewVC Help
Powered by ViewVC