summaryrefslogtreecommitdiff
path: root/filter/source/config/cache
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-07-30 10:40:51 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-07-30 12:18:07 -0400
commit7d477f3bd1eda5426f5858ebb64c8c4e43409ba9 (patch)
treeb6bf9254c83a0542b84c3c7ca7a37a0cb74fc872 /filter/source/config/cache
parent1460b35d3679cd3dd2053597b6546c65bfeb2006 (diff)
Avoid non-ASCII characters in source code.
Change-Id: I4014cf6c88ebdacd1c6c167e44ef61980182bc31
Diffstat (limited to 'filter/source/config/cache')
-rw-r--r--filter/source/config/cache/filtercache.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index e6e1e4fd6b9c..e7c5f7c45f76 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -295,7 +295,7 @@ OUStringList FilterCache::getMatchingItemsByProps( EItemType eType ,
::osl::ResettableMutexGuard aLock(m_aLock);
// search for right list
- // An exception is thrown �f "eType" is unknown.
+ // An exception is thrown - "eType" is unknown.
// => rList will be valid everytimes next line is reached.
CacheItemList& rList = impl_getItemList(eType);
@@ -331,7 +331,7 @@ sal_Bool FilterCache::hasItems(EItemType eType) const
::osl::ResettableMutexGuard aLock(m_aLock);
// search for right list
- // An exception is thrown �f "eType" is unknown.
+ // An exception is thrown - "eType" is unknown.
// => rList will be valid everytimes next line is reached.
CacheItemList& rList = impl_getItemList(eType);
@@ -348,7 +348,7 @@ OUStringList FilterCache::getItemNames(EItemType eType) const
::osl::ResettableMutexGuard aLock(m_aLock);
// search for right list
- // An exception is thrown �f "eType" is unknown.
+ // An exception is thrown - "eType" is unknown.
// => rList will be valid everytimes next line is reached.
CacheItemList& rList = impl_getItemList(eType);
@@ -373,7 +373,7 @@ sal_Bool FilterCache::hasItem( EItemType eType,
::osl::ResettableMutexGuard aLock(m_aLock);
// search for right list
- // An exception is thrown �f "eType" is unknown.
+ // An exception is thrown - "eType" is unknown.
// => rList will be valid everytimes next line is reached.
CacheItemList& rList = impl_getItemList(eType);
@@ -461,7 +461,7 @@ void FilterCache::removeItem( EItemType eType,
::osl::ResettableMutexGuard aLock(m_aLock);
// search for right list
- // An exception is thrown �f "eType" is unknown.
+ // An exception is thrown - "eType" is unknown.
// => rList will be valid everytimes next line is reached.
CacheItemList& rList = impl_getItemList(eType);
@@ -484,7 +484,7 @@ void FilterCache::setItem( EItemType eType ,
::osl::ResettableMutexGuard aLock(m_aLock);
// search for right list
- // An exception is thrown �f "eType" is unknown.
+ // An exception is thrown - "eType" is unknown.
// => rList will be valid everytimes next line is reached.
CacheItemList& rList = impl_getItemList(eType);