diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-05-15 10:42:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-05-15 11:14:28 +0300 |
commit | cb6d67c21f11811c5bc023b9565c1c1b1f4081fa (patch) | |
tree | ff8a4b192a2ca846d32111732563432244135910 /xmloff/source | |
parent | 1a357b7394ac7b48b72821bff1aae4706265d7a4 (diff) |
Spelling "separate" (etc) correctly is hard
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/core/xmluconv.cxx | 6 | ||||
-rw-r--r-- | xmloff/source/table/XMLTableExport.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx index 6c247711cbc0..0026161f3f12 100644 --- a/xmloff/source/core/xmluconv.cxx +++ b/xmloff/source/core/xmluconv.cxx @@ -450,8 +450,8 @@ sal_Bool SvXMLUnitConverter::convertDateTime( double& fDateTime, } -SvXMLTokenEnumerator::SvXMLTokenEnumerator( const OUString& rString, sal_Unicode cSeperator /* = sal_Unicode(' ') */ ) -: maTokenString( rString ), mnNextTokenPos(0), mcSeperator( cSeperator ) +SvXMLTokenEnumerator::SvXMLTokenEnumerator( const OUString& rString, sal_Unicode cSeparator /* = sal_Unicode(' ') */ ) +: maTokenString( rString ), mnNextTokenPos(0), mcSeparator( cSeparator ) { } @@ -460,7 +460,7 @@ sal_Bool SvXMLTokenEnumerator::getNextToken( OUString& rToken ) if( -1 == mnNextTokenPos ) return sal_False; - int nTokenEndPos = maTokenString.indexOf( mcSeperator, mnNextTokenPos ); + int nTokenEndPos = maTokenString.indexOf( mcSeparator, mnNextTokenPos ); if( nTokenEndPos != -1 ) { rToken = maTokenString.copy( mnNextTokenPos, diff --git a/xmloff/source/table/XMLTableExport.cxx b/xmloff/source/table/XMLTableExport.cxx index 651533c785b8..b710adefa8f7 100644 --- a/xmloff/source/table/XMLTableExport.cxx +++ b/xmloff/source/table/XMLTableExport.cxx @@ -257,7 +257,7 @@ static bool has_states( const std::vector< XMLPropertyState >& xPropStates ) Reference< XCellRange > xCellRange( xPropSet, UNO_QUERY_THROW ); for ( sal_Int32 nColumn = 0; nColumn < nColumnCount; ++nColumn ) { - // get current cell, remarks row index is 0, because we get the range for each row seperate + // get current cell, remarks row index is 0, because we get the range for each row separate Reference< XPropertySet > xCellSet( xCellRange->getCellByPosition(nColumn, 0), UNO_QUERY_THROW ); // get style @@ -358,7 +358,7 @@ static bool has_states( const std::vector< XMLPropertyState >& xPropStates ) for ( sal_Int32 columnIndex = 0; columnIndex < columnCount; columnIndex++ ) { - // get current cell, remarks row index is 0, because we get the range for each row seperate + // get current cell, remarks row index is 0, because we get the range for each row separate Reference< XCell > xCell( xCellRange->getCellByPosition(columnIndex, 0), UNO_QUERY_THROW ); // use XMergeableCell interface from offapi diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index 647aeff463df..3b5933be9e2f 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -2141,7 +2141,7 @@ void XMLTextParagraphExport::exportParagraph( { // For the auto styles, the multi property set helper is only used // if hard attributes are existing. Therfor, it seems to be a better - // strategy to have the TextSection property seperate, because otherwise + // strategy to have the TextSection property separate, because otherwise // we always retrieve the style names even if they are not required. if( bAutoStyles ) { |