summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svtools/source/svrtf/parrtf.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx
index 1691ed7947d8..a907500c974c 100644
--- a/svtools/source/svrtf/parrtf.cxx
+++ b/svtools/source/svrtf/parrtf.cxx
@@ -202,7 +202,7 @@ int SvRTFParser::_GetNextToken()
if( '\\' == cAnsi &&
'\'' == ( cAnsi = GetNextChar() ))
// read on HexValue
- cAnsi = GetHexValue();
+ GetHexValue();
nNextCh = GetNextChar();
}
ScanText();
@@ -426,7 +426,7 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
if( '\\' == cAnsi &&
'\'' == ( cAnsi = GetNextChar() ))
// HexValue ueberlesen
- cAnsi = GetHexValue();
+ GetHexValue();
nNextCh = GetNextChar();
}
bNextCh = false;