diff options
-rw-r--r-- | svtools/source/svrtf/parrtf.cxx | 4 | ||||
-rw-r--r-- | sw/source/uibase/dochdl/gloshdl.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx index 52e350f52442..04c59e1b0c52 100644 --- a/svtools/source/svrtf/parrtf.cxx +++ b/svtools/source/svrtf/parrtf.cxx @@ -200,7 +200,7 @@ int SvRTFParser::GetNextToken_() if( '\\' == cAnsi && '\'' == ( cAnsi = GetNextChar() )) - // read on HexValue + // skip HexValue GetHexValue(); nNextCh = GetNextChar(); } @@ -437,7 +437,7 @@ void SvRTFParser::ScanText() if( '\\' == cAnsi && '\'' == ( cAnsi = GetNextChar() )) - // HexValue ueberlesen + // skip HexValue GetHexValue(); nNextCh = GetNextChar(); } diff --git a/sw/source/uibase/dochdl/gloshdl.cxx b/sw/source/uibase/dochdl/gloshdl.cxx index 85964f4c1f0c..2fa820fea16f 100644 --- a/sw/source/uibase/dochdl/gloshdl.cxx +++ b/sw/source/uibase/dochdl/gloshdl.cxx @@ -258,13 +258,13 @@ sal_uInt16 SwGlossaryHdl::GetGlossaryCnt() OUString SwGlossaryHdl::GetGlossaryName( sal_uInt16 nId ) { - OSL_ENSURE(nId < GetGlossaryCnt(), "Textbausteinarray ueberindiziert."); + OSL_ENSURE(nId < GetGlossaryCnt(), "Text building block array over-indexed."); return pCurGrp->GetLongName( nId ); } OUString SwGlossaryHdl::GetGlossaryShortName(sal_uInt16 nId) { - OSL_ENSURE(nId < GetGlossaryCnt(), "Textbausteinarray ueberindiziert."); + OSL_ENSURE(nId < GetGlossaryCnt(), "Text building block array over-indexed."); return pCurGrp->GetShortName( nId ); } |