/[svn]/libgig/trunk/src/gig.cpp
ViewVC logotype

Diff of /libgig/trunk/src/gig.cpp

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

revision 3942 by schoenebeck, Fri Jun 18 14:23:21 2021 UTC revision 3943 by schoenebeck, Fri Jun 18 14:56:53 2021 UTC
# Line 6611  namespace { Line 6611  namespace {
6611              }              }
6612          }          }
6613          if (!pInstruments) return NULL;          if (!pInstruments) return NULL;
6614          InstrumentsIterator = pInstruments->begin();          if (index >= pInstruments->size()) return NULL;
6615          for (size_t i = 0; InstrumentsIterator != pInstruments->end(); i++) {          return static_cast<gig::Instrument*>( (*pInstruments)[index] );
             if (i == index) return static_cast<gig::Instrument*>( *InstrumentsIterator );  
             InstrumentsIterator++;  
         }  
         return NULL;  
6616      }      }
6617    
6618      /** @brief Add a new instrument definition.      /** @brief Add a new instrument definition.

Legend:
Removed from v.3942  
changed lines
  Added in v.3943

  ViewVC Help
Powered by ViewVC