summaryrefslogtreecommitdiff
path: root/filter/source/config/cache
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/config/cache')
-rw-r--r--filter/source/config/cache/filtercache.cxx6
-rw-r--r--filter/source/config/cache/filtercache.hxx2
2 files changed, 4 insertions, 4 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);
diff --git a/filter/source/config/cache/filtercache.hxx b/filter/source/config/cache/filtercache.hxx
index e28b88a3b54a..7305c488a477 100644
--- a/filter/source/config/cache/filtercache.hxx
+++ b/filter/source/config/cache/filtercache.hxx
@@ -1001,7 +1001,7 @@ class FilterCache : public BaseLock
/** TODO */
OUStringList impl_tokenizeString(const OUString& sData ,
- sal_Unicode cSeperator);
+ sal_Unicode cSeparator);
//---------------------------------------