diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-03 17:11:39 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-03 17:14:16 +0100 |
commit | f5ca04caca1b6888cdc6b00b8465a53e6d5cf38d (patch) | |
tree | cda73db2df15d821e0587f345edd7587953bdbdf /svtools/source/svrtf | |
parent | ecf00403376d13355fcf6fb7cd36b3500f19fc69 (diff) |
Related to fdo#60724: correct spelling
Using the autocorrect list of LibreOffice
extras/source/autotext/lang/en-US/acor/DocumentList.xml
Change-Id: I8b93969bc0742c2e95b8b7db3c4c37691e8d3657
Script: http://pastebin.ca/2327716
Diffstat (limited to 'svtools/source/svrtf')
-rw-r--r-- | svtools/source/svrtf/svparser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/svrtf/svparser.cxx b/svtools/source/svrtf/svparser.cxx index d44359764ead..5f2bcba9750c 100644 --- a/svtools/source/svrtf/svparser.cxx +++ b/svtools/source/svrtf/svparser.cxx @@ -244,7 +244,7 @@ sal_Unicode SvParser::GetNextChar() &nInfo, &nCvtBytes); if( (nInfo&RTL_TEXTTOUNICODE_INFO_SRCBUFFERTOSMALL) != 0 ) { - // The conversion wasn't successfull because we haven't + // The conversion wasn't successful because we haven't // read enough characters. if( pImplData->hContext != (rtl_TextToUnicodeContext)1 ) { @@ -333,7 +333,7 @@ sal_Unicode SvParser::GetNextChar() } else if( 1 == nChars && 0 == nInfo ) { - // The conversion was successfull + // The conversion was successful DBG_ASSERT( nCvtBytes == 1, "no all bytes have been converted!" ); c = cUC; |