summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/docchart.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-05-15 10:42:04 +0300
committerTor Lillqvist <tml@iki.fi>2013-05-15 11:14:28 +0300
commitcb6d67c21f11811c5bc023b9565c1c1b1f4081fa (patch)
treeff8a4b192a2ca846d32111732563432244135910 /sw/source/core/doc/docchart.cxx
parent1a357b7394ac7b48b72821bff1aae4706265d7a4 (diff)
Spelling "separate" (etc) correctly is hard
Diffstat (limited to 'sw/source/core/doc/docchart.cxx')
-rw-r--r--sw/source/core/doc/docchart.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/doc/docchart.cxx b/sw/source/core/doc/docchart.cxx
index 226d6bb8352f..ebc0d10f1e75 100644
--- a/sw/source/core/doc/docchart.cxx
+++ b/sw/source/core/doc/docchart.cxx
@@ -63,11 +63,11 @@ bool SwTable::IsTblComplexForChart( const String& rSelection ) const
if( '<' == sBox.GetChar( 0 ) ) sBox.Erase( 0, 1 );
if( '>' == sBox.GetChar( sBox.Len()-1 ) ) sBox.Erase( sBox.Len()-1 );
- xub_StrLen nSeperator = sBox.Search( ':' );
- OSL_ENSURE( STRING_NOTFOUND != nSeperator, "no valid selection" );
+ xub_StrLen nSeparator = sBox.Search( ':' );
+ OSL_ENSURE( STRING_NOTFOUND != nSeparator, "no valid selection" );
- pSttBox = GetTblBox( sBox.Copy( 0, nSeperator ));
- pEndBox = GetTblBox( sBox.Copy( nSeperator+1 ));
+ pSttBox = GetTblBox( sBox.Copy( 0, nSeparator ));
+ pEndBox = GetTblBox( sBox.Copy( nSeparator+1 ));
}
else
{