/[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 961 by capela, Sun Dec 3 18:26:13 2006 UTC revision 1016 by capela, Mon Jan 8 22:04:33 2007 UTC
# Line 2  Line 2 
2  //  //
3  // ui.h extension file, included from the uic-generated form implementation.  // ui.h extension file, included from the uic-generated form implementation.
4  /****************************************************************************  /****************************************************************************
5     Copyright (C) 2004-2006, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 341  bool qsamplerChannelStrip::updateChannel Line 341  bool qsamplerChannelStrip::updateChannel
341          updateInstrumentName(false);          updateInstrumentName(false);
342    
343      // MIDI Port/Channel...      // MIDI Port/Channel...
344      if (m_pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL)          if (m_pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL)
345          MidiPortChannelTextLabel->setText(QString("%1 / *").arg(m_pChannel->midiPort()));                  MidiPortChannelTextLabel->setText(tr("All"));
346      else          else
347          MidiPortChannelTextLabel->setText(QString("%1 / %2").arg(m_pChannel->midiPort()).arg(m_pChannel->midiChannel() + 1));                  MidiPortChannelTextLabel->setText(QString::number(m_pChannel->midiChannel() + 1));
348    
349      // Instrument status...      // Instrument status...
350      int iInstrumentStatus = m_pChannel->instrumentStatus();      int iInstrumentStatus = m_pChannel->instrumentStatus();

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

  ViewVC Help
Powered by ViewVC