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

    r7433 r9620  
    166166    while (tmp_str<end_str) {
    167167      if (*tmp_str=='<') {    // for html tags
    168     while (*tmp_str!='>') tmp_str++;
     168    while (*tmp_str!='>') ++tmp_str;
    169169      } else if (*tmp_str=='&') { // for html entities
    170     while (*tmp_str!=';') tmp_str++;
    171     num_chars++;
    172       } else num_chars++;
    173       tmp_str++;
     170    while (*tmp_str!=';') ++tmp_str;
     171    ++num_chars;
     172      } else ++num_chars;
     173      ++tmp_str;
    174174    }
    175175
     
    180180
    181181    textout << outconvert << "<td>" << disp << fmt_str << "</td>\n";
    182     tsibling ++;
     182    ++tsibling;
    183183  }
    184184
Note: See TracChangeset for help on using the changeset viewer.