summaryrefslogtreecommitdiff
path: root/filter/source/config/cache/filtercache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/config/cache/filtercache.cxx')
-rw-r--r--filter/source/config/cache/filtercache.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index 8fb4412abaa0..f4251c3c1c1c 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -1364,7 +1364,7 @@ void FilterCache::impl_load(EFillState eRequiredState)
::osl::ResettableMutexGuard aLock(m_aLock);
// Attention: Detect services are part of the standard set!
- // So there is no need to handle it seperatly.
+ // So there is no need to handle it separately.
// ------------------------------------------
// a) The standard set of config value is needed.
@@ -2340,13 +2340,13 @@ CacheItem FilterCache::impl_readOldItem(const css::uno::Reference< css::containe
OUStringList FilterCache::impl_tokenizeString(const OUString& sData ,
- sal_Unicode cSeperator)
+ sal_Unicode cSeparator)
{
OUStringList lData ;
sal_Int32 nToken = 0;
do
{
- OUString sToken = sData.getToken(0, cSeperator, nToken);
+ OUString sToken = sData.getToken(0, cSeparator, nToken);
lData.push_back(sToken);
}
while(nToken >= 0);