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

    r8715 r9620  
    342342      disp.expandstring ("document", "_defaultwidth_", width);
    343343    iwidth += width.getint();
    344     dochere ++;
     344    ++dochere;
    345345  }
    346346  if ((twidth - iwidth) < numc) swidth = 2;
     
    425425        }
    426426     }
    427      dochere ++;
     427     ++dochere;
    428428     first = false;
    429429      }
     
    467467     }
    468468     navigationbar += ">" + title + "</option>\n";
    469      dochere++;
     469     ++dochere;
    470470      }
    471471
     
    627627     
    628628      // don't need to check current collection again
    629       if (*col_here == args["c"]) {col_here ++; continue;}
     629      if (*col_here == args["c"]) {++col_here; continue;}
    630630     
    631631      collectproto = protos->getrecptproto (*col_here, logout);
     
    638638    }
    639639      }
    640       col_here ++;
     640      ++col_here;
    641641    }
    642642  }
     
    684684      formatinfo.formatstrings[(*format_here).first] = (*format_here).second;
    685685   
    686     format_here ++;
     686    ++format_here;
    687687  }
    688688
     
    890890      while (a != b) {
    891891        if (*a == 46) collage = false;
    892         a++;
     892        ++a;
    893893      }
    894894
     
    11661166    while (sechere != secend) {
    11671167      int shastxt = (*sechere).metadata["hastxt"].values[0].getint();
    1168       if (shastxt == 1) seccount ++;
     1168      if (shastxt == 1) ++seccount;
    11691169      if (seccount > 10) break;
    1170       sechere ++;
     1170      ++sechere;
    11711171    }
    11721172    if (seccount > 10) {
     
    11951195               (*sechere).OID, highlight, shastxt, wanttext, collection,
    11961196               collectproto, browsers, disp, outconvert, textout, logout, args);
    1197       count ++;
    1198       sechere ++;
     1197      ++count;
     1198      ++sechere;
    11991199    }
    12001200      }
     
    12611261    break;
    12621262      }
    1263       this_sibling++;
     1263      ++this_sibling;
    12641264      first = false;
    12651265    }
    12661266    thisoid = get_parent(thisoid);
    1267     parentcount--;
     1267    --parentcount;
    12681268  }
    12691269
     
    12811281    break;
    12821282      }
    1283       h++;
     1283      ++h;
    12841284    }
    12851285  }
Note: See TracChangeset for help on using the changeset viewer.