summaryrefslogtreecommitdiff
path: root/sfx2/source/bastyp/fltfnc.cxx
diff options
context:
space:
mode:
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();