diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2011-01-19 12:16:23 +0100 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2011-01-19 12:16:23 +0100 |
commit | 43ca56fac541b5de67cae70ced42233c5c4c678c (patch) | |
tree | 9d3344f2ab26d636ddd1c6ee453dc3eb6a829011 /svtools/source/edit | |
parent | 6da383ea9ad1df728689e10aa65021221ba303cf (diff) | |
parent | 85ac003e2d0eb6ab7ebe2ec6a3eb8cdac662ac98 (diff) |
CWS-TOOLING: integrate CWS ab79
Diffstat (limited to 'svtools/source/edit')
-rw-r--r-- | svtools/source/edit/syntaxhighlight.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/edit/syntaxhighlight.cxx b/svtools/source/edit/syntaxhighlight.cxx index 87585f5b2587..6ea9f05d78a1 100644 --- a/svtools/source/edit/syntaxhighlight.cxx +++ b/svtools/source/edit/syntaxhighlight.cxx @@ -523,7 +523,7 @@ BOOL SimpleTokenizer_Impl::getNextToken( /*out*/TokenTypes& reType, c = getChar(); // '/' entfernen // Alle Zeichen bis Zeilen-Ende oder EOF entfernen - sal_Unicode cPeek = peekChar(); + sal_Unicode cPeek = c; while( cPeek != CHAR_EOF && testCharFlags( cPeek, CHAR_EOL ) == FALSE ) { getChar(); |