Ignore:
Timestamp:
2005-04-11T11:32:00+12:00 (19 years ago)
Author:
kjdon
Message:

added some x++ -> ++x changes submitted by Emanuel Dejanu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/collectset.cpp

    r9030 r9620  
    6464      // ignore the modelcol
    6565      if (*thiscol == "modelcol") {
    66         thiscol ++;
     66        ++thiscol;
    6767        continue;
    6868      }
     
    163163      cservers.addcollectserver (cserver);
    164164
    165       thiscol ++;
     165      ++thiscol;
    166166    }
    167167      }
     
    178178      delete (*here).second.c;
    179179    }
    180     here ++;
     180    ++here;
    181181  }
    182182  cservers.clear();
     
    204204           << configinfo.collection << "\", gsdlhome=\""
    205205           << configinfo.gsdlhome << "\"\n";
    206     here ++;
     206    ++here;
    207207    continue;
    208208      }
     
    215215           << configinfo.collection << "\", gsdlhome=\""
    216216           << configinfo.gsdlhome << "\"\n";
    217     here ++;
     217    ++here;
    218218    continue;
    219219      }
     
    224224      (*here).second.c->configure("httpprefix",httpprefix);
    225225    }
    226     here++;
     226    ++here;
    227227  }
    228228
     
    248248      // ignore the modelcol
    249249      if (*thiscol == "modelcol") {
    250     thiscol ++;
     250    ++thiscol;
    251251    continue;
    252252      }
     
    255255      this->add_collection (*thiscol, gsdlhome);
    256256   
    257       thiscol ++;
     257      ++thiscol;
    258258    }
    259259  }
     
    275275      break;
    276276    }
    277     here ++;
     277    ++here;
    278278  }
    279279     
     
    395395      delete (*here).second.c;
    396396    }
    397     here ++;
     397    ++here;
    398398  }
    399399  cservers.clear();
     
    426426      return;
    427427    }
    428     here ++;
     428    ++here;
    429429  }
    430430  outconvertclass text_t2ascii;
     
    453453    }
    454454
    455     here++;
     455    ++here;
    456456  }
    457457}
     
    468468      collist.push_back ((*here).second.c->get_collection_name());
    469469    }
    470     here++;
     470    ++here;
    471471  }
    472472}
     
    485485    recpt.configure("collectinfo", colinfo);
    486486
    487     here++;
    488   }
    489 }
     487    ++here;
     488  }
     489}
Note: See TracChangeset for help on using the changeset viewer.