/[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 3958 by schoenebeck, Sat Jun 19 10:48:12 2021 UTC revision 3961 by schoenebeck, Sat Jun 19 11:01:40 2021 UTC
# Line 5776  namespace { Line 5776  namespace {
5776       *       *
5777       * @param slot - script slot index of the variable to be retrieved       * @param slot - script slot index of the variable to be retrieved
5778       */       */
5779      std::map<String,String> Instrument::GetScriptPatchVariables(int slot) {      std::map<String,String> Instrument::GetScriptPatchVariables(size_t slot) {
5780          Script* script = GetScriptOfSlot(slot);          Script* script = GetScriptOfSlot(slot);
5781          if (!script) return std::map<String,String>();          if (!script) return std::map<String,String>();
5782          const _UUID uuid = _UUIDFromCArray(&script->Uuid[0]);          const _UUID uuid = _UUIDFromCArray(&script->Uuid[0]);
# Line 5808  namespace { Line 5808  namespace {
5808       * @param slot - script slot index of the variable to be retrieved       * @param slot - script slot index of the variable to be retrieved
5809       * @param variable - name of the 'patch' variable in that script       * @param variable - name of the 'patch' variable in that script
5810       */       */
5811      String Instrument::GetScriptPatchVariable(int slot, String variable) {      String Instrument::GetScriptPatchVariable(size_t slot, String variable) {
5812          std::map<String,String> vars = GetScriptPatchVariables(slot);          std::map<String,String> vars = GetScriptPatchVariables(slot);
5813          return (vars.count(variable)) ? vars.find(variable)->second : "";          return (vars.count(variable)) ? vars.find(variable)->second : "";
5814      }      }
# Line 5835  namespace { Line 5835  namespace {
5835       * @throws gig::Exception if given script @p slot index is invalid or given       * @throws gig::Exception if given script @p slot index is invalid or given
5836       *         @p variable name is empty       *         @p variable name is empty
5837       */       */
5838      void Instrument::SetScriptPatchVariable(int slot, String variable, String value) {      void Instrument::SetScriptPatchVariable(size_t slot, String variable, String value) {
5839          if (variable.empty())          if (variable.empty())
5840              throw Exception("Variable name must not be empty");              throw Exception("Variable name must not be empty");
5841          Script* script = GetScriptOfSlot(slot);          Script* script = GetScriptOfSlot(slot);

Legend:
Removed from v.3958  
changed lines
  Added in v.3961

  ViewVC Help
Powered by ViewVC