~ubuntu-branches/ubuntu/saucy/muse/saucy

« back to all changes in this revision

Viewing changes to muse/synth.cpp

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-01-07 10:27:14 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20130107102714-fajkwjbz02aqupbh
Tags: 2.1-1
* New upstream release.
* Refresh 1001-buildsystem.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
919
919
//   getPatchName
920
920
//---------------------------------------------------------
921
921
 
922
 
const char* MessSynthIF::getPatchName(int channel, int prog, bool drum)
 
922
QString MessSynthIF::getPatchName(int channel, int prog, bool drum) const
923
923
      {
924
924
        if (_mess)
925
 
        {
926
 
              const char* s = _mess->getPatchName(channel, prog, drum); 
927
 
              if(s)
928
 
                return s;
929
 
        }      
 
925
          return _mess->getPatchName(channel, prog, drum);
930
926
        return "";
931
927
      }
932
928