Changeset 7332 for code/branches/doc/src/libraries
- Timestamp:
- Sep 3, 2010, 2:23:18 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/libraries/util/SubString.cc
r7327 r7332 320 320 if (!bRemoveEscapeChar) 321 321 token += line[i]; 322 fallBackNeighbours = 0; 322 323 } 323 324 else if(line[i] == safemodeChar) … … 327 328 if (!bRemoveSafemodeChar) 328 329 token += line[i]; 330 fallBackNeighbours = 0; 329 331 } 330 332 else if(line[i] == openparenthesisChar) … … 334 336 if (!bRemoveParenthesisChars) 335 337 token += line[i]; 338 fallBackNeighbours = 0; 336 339 } 337 340 else if(line[i] == commentChar) … … 339 342 if (fallBackNeighbours > 0) 340 343 token = token.substr(0, token.size() - fallBackNeighbours); 344 fallBackNeighbours = 0; 341 345 // FINISH 342 346 if(bAllowEmptyEntries || token.size() > 0) … … 355 359 if (fallBackNeighbours > 0) 356 360 token = token.substr(0, token.size() - fallBackNeighbours); 361 fallBackNeighbours = 0; 357 362 // FINISH 358 363 if(bAllowEmptyEntries || token.size() > 0)
Note: See TracChangeset
for help on using the changeset viewer.