writerfilter: continous -> continuous

Change-Id: Ie36ac366af0563485b2d937903a63a9b3aca8931
This commit is contained in:
Miklos Vajna
2014-02-03 13:16:24 +01:00
parent ab207cc63d
commit d271e5fd87
2 changed files with 3 additions and 3 deletions

View File

@@ -2004,7 +2004,7 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
break;
case RTF_PAGE:
{
// If we're inside a continous section, we should send a section break, not a page one.
// If we're inside a continuous section, we should send a section break, not a page one.
RTFValue::Pointer_t pBreak = m_aStates.top().aSectionSprms.find(NS_sprm::LN_SBkc);
// Unless we're on a title page.
RTFValue::Pointer_t pTitlePg = m_aStates.top().aSectionSprms.find(NS_ooxml::LN_EG_SectPrContents_titlePg);

View File

@@ -384,7 +384,7 @@ namespace writerfilter {
bool m_bSkipUnknown;
/// Font index <-> encoding map, *not* part of the parser state
std::map<int, rtl_TextEncoding> m_aFontEncodings;
/// Maps the non-continious font indexes to the continous dmapper indexes.
/// Maps the non-continious font indexes to the continuous dmapper indexes.
std::vector<int> m_aFontIndexes;
/// Maps style indexes to style names.
std::map<int, OUString> m_aStyleNames;
@@ -464,7 +464,7 @@ namespace writerfilter {
oox::formulaimport::XmlStreamBuilder m_aMathBuffer;
/// Normal text property, that is math italic and math spacing are not applied to the current run.
bool m_bMathNor;
/// If the next continous section break should be ignored.
/// If the next continuous section break should be ignored.
bool m_bIgnoreNextContSectBreak;
/// If a section break is needed before the end of the doc (false right after a section break).
bool m_bNeedSect;