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/pageaction.cpp

    r8030 r9620  
    203203              search_types |= 1;
    204204            }
    205             type_here ++;
     205            ++type_here;
    206206          }
    207207          coll_type += search_types;
     
    258258        }
    259259
    260         collist_here ++;
     260        ++collist_here;
    261261        }
    262262       
    263263      }
    264264      }
    265     rprotolist_here ++;
     265    ++rprotolist_here;
    266266    }
    267267   
     
    333333              search_types |= 1;
    334334            }
    335             type_here ++;
     335            ++type_here;
    336336          }
    337337          coll_type += search_types;
     
    432432          homeextra += "<td>" + link + collectionname + "</a></td>\n";
    433433         
    434           count ++;
     434          ++count;
    435435          first = false;
    436436        }
    437437      }
    438       collist_here ++;
     438      ++collist_here;
    439439    }
    440440
    441     for (; count%configinfo.HomePageCols != 0; count ++) homeextra += "<td></td>\n";
     441    for (; count%configinfo.HomePageCols != 0; ++count) homeextra += "<td></td>\n";
    442442      }
    443443    }
    444444    homeextra += "</td></tr>\n<tr>\n";
    445     rprotolist_here ++;
     445    ++rprotolist_here;
    446446  }
    447447
     
    477477        if (cinfo->isPublic && (cinfo->buildDate > 0)) {
    478478
    479           count ++;
     479          ++count;
    480480
    481481          text_t coll_type = "&ct=";
     
    506506              search_types |= 0x01;
    507507            }
    508             type_here ++;
     508            ++type_here;
    509509          }
    510510          coll_type += search_types;
     
    547547        }
    548548      }
    549       collist_here ++;
     549      ++collist_here;
    550550    }
    551551      }
    552552    }
    553     rprotolist_here ++;
     553    ++rprotolist_here;
    554554  }
    555555
     
    640640  while (thislang != endlang) {
    641641    languages[(*thislang).second.longname] = (*thislang).first;
    642     thislang++;
     642    ++thislang;
    643643  }
    644644  text_tmap::iterator tlang = languages.begin();
     
    661661        languageoption += ">" + (*tlang).first + "</option>\n";
    662662      }
    663       tlang ++;
     663      ++tlang;
    664664    }
    665665      }
     
    672672      if ((*tlang).second == arg_l) languageoption += " selected";
    673673      languageoption += ">" + (*tlang).first + "</option>\n";
    674       tlang ++;
     674      ++tlang;
    675675    }
    676676  }
     
    693693      if ((*thisenc).second == arg_w) encodingoption += " selected";
    694694      encodingoption += ">" + (*thisenc).first + "</option>\n";
    695       thisenc ++;
     695      ++thisenc;
    696696    }
    697697
     
    873873    } else {
    874874      ColInfoResponse_t *this_cinfo = recpt->get_collectinfo_ptr (collectproto, *col_here, logout);
    875       if (this_cinfo == NULL) {col_here ++; continue;}
     875      if (this_cinfo == NULL) {++col_here; continue;}
    876876      colname = this_cinfo->collectionmeta["collectionname"];
    877877    }
    878878
    879     count ++;
     879    ++count;
    880880    collectionoption += "<input type=checkbox name=\"cc\" value=\"" +
    881881      *col_here + "\" onClick=\"updatecc(\'" + *col_here + "\');\"> " +
    882882      colname + "<br>\n";
    883     col_here ++;
     883    ++col_here;
    884884      }
    885885     
     
    946946    while (here != end) {
    947947     
    948       classifiernumber++;
     948      ++classifiernumber;
    949949      text_t childtype = (*here).metadata["childtype"].values[0];
    950950      if (childtype == "Collage" && arg_p == "about") {
     
    954954    collage = true;
    955955      }
    956       here ++;
     956      ++here;
    957957    }
    958958    if (! collage)
     
    977977      }
    978978
    979       here ++;
     979      ++here;
    980980    }
    981981    shorttext += "</ul>\n";
     
    998998      } else {
    999999        ColInfoResponse_t *this_cinfo = recpt->get_collectinfo_ptr (collectproto, *here, logout);
    1000         if (this_cinfo == NULL) {here ++; continue;}
     1000        if (this_cinfo == NULL) {++here; continue;}
    10011001        if (!first) textsubcollections += "<br>";
    10021002        textsubcollections += "\n" + this_cinfo->collectionmeta["collectionname"] + "\n";
    10031003      }
    1004       count ++;
     1004      ++count;
    10051005      first = false;
    1006       here ++;
     1006      ++here;
    10071007    }
    10081008    textsubcollections += "_textsubcols2_";
Note: See TracChangeset for help on using the changeset viewer.