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/recpt/querytools.cpp

    r8715 r9620  
    192192      formattedstring.push_back (*here);
    193193    }
    194     here ++;
     194    ++here;
    195195  }
    196196  querystring = formattedstring;
     
    214214      }
    215215      else
    216         here++;
     216        ++here;
    217217    }
    218218      //converting BCE dates
     
    254254           }
    255255         }
    256          nextdate++;
     256         ++nextdate;
    257257       }
    258258     querystring.appendcstr(" )");
     
    284284      if (foundquote) tmptext.push_back (*here);
    285285    }
    286     here ++;
     286    ++here;
    287287      }
    288288    }
     
    307307    }
    308308
    309     here++;
     309    ++here;
    310310  }
    311311  return escquery;
     
    343343
    344344
    345   for (int i=0; i< values.size(); i++) {
     345  for (int i=0; i< values.size(); ++i) {
    346346    if (!values[i].empty()) {
    347347      if (ct == 1) {
     
    395395  splitchar(comb.begin(), comb.end(), ',', combs);
    396396 
    397   for(int i=0; i< values.size(); i++) {
     397  for(int i=0; i< values.size(); ++i) {
    398398    if (!values[i].empty()) {
    399399      if (i!=0) {
     
    429429      // not word boundary
    430430      word.push_back(*here);
    431       here++;   
     431      ++here;   
    432432    }
    433433    else {
     
    450450    outtext.push_back(*here);
    451451      }
    452       here++;
     452      ++here;
    453453    }
    454454  }
     
    651651      // not word boundary
    652652      word.push_back(*here);
    653       here++;   
     653      ++here;   
    654654    }
    655655    else {
     
    662662      // everything else, we add into the query string
    663663      outtext.push_back(*here);
    664       here++;
     664      ++here;
    665665    }
    666666  }
Note: See TracChangeset for help on using the changeset viewer.