summaryrefslogtreecommitdiff
path: root/sfx2/source/bastyp/fltfnc.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 /sfx2/source/bastyp/fltfnc.cxx
parent1a357b7394ac7b48b72821bff1aae4706265d7a4 (diff)
Spelling "separate" (etc) correctly is hard
Diffstat (limited to 'sfx2/source/bastyp/fltfnc.cxx')
-rw-r--r--sfx2/source/bastyp/fltfnc.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/bastyp/fltfnc.cxx b/sfx2/source/bastyp/fltfnc.cxx
index 8c83031c8acf..8d9a70c744b3 100644
--- a/sfx2/source/bastyp/fltfnc.cxx
+++ b/sfx2/source/bastyp/fltfnc.cxx
@@ -891,10 +891,10 @@ const SfxFilter* SfxFilterMatcherIter::Next()
/*---------------------------------------------------------------
helper to build own formated string from given stringlist by
- using given seperator
+ using given separator
---------------------------------------------------------------*/
OUString implc_convertStringlistToString( const uno::Sequence< OUString >& lList ,
- const sal_Unicode& cSeperator,
+ const sal_Unicode& cSeparator,
const OUString& sPrefix )
{
OUStringBuffer sString ( 1000 ) ;
@@ -909,7 +909,7 @@ OUString implc_convertStringlistToString( const uno::Sequence< OUString >& lList
sString.append( lList[nItem] );
if( nItem+1<nCount )
{
- sString.append( cSeperator );
+ sString.append( cSeparator );
}
}
return sString.makeStringAndClear();