summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/xmluconv.cxx6
-rw-r--r--xmloff/source/table/XMLTableExport.cxx4
-rw-r--r--xmloff/source/text/txtparae.cxx2
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 )
{