summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-02-02 19:47:20 +0100
committerjan iversen <jani@documentfoundation.org>2016-02-05 06:48:38 +0000
commit534b2a4b58ba765dbc256d6297e33453524915e2 (patch)
tree68524baff923ce094392f49e0f263ae0d35f80e9 /filter
parentremove unused Default from .SDI files (diff)
downloadcore-534b2a4b58ba765dbc256d6297e33453524915e2.tar.gz
core-534b2a4b58ba765dbc256d6297e33453524915e2.zip
Fix typos
Change-Id: Ice72f8d9971e15dd6ef365e64cd567b8581a92d3 Reviewed-on: https://gerrit.libreoffice.org/21797 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/TypeDetection.java2
-rw-r--r--filter/source/config/cache/basecontainer.cxx4
-rw-r--r--filter/source/config/cache/configflush.cxx2
-rw-r--r--filter/source/config/cache/filtercache.cxx10
-rw-r--r--filter/source/config/cache/filterfactory.cxx2
-rw-r--r--filter/source/config/cache/typedetection.cxx2
6 files changed, 11 insertions, 11 deletions
diff --git a/filter/qa/complex/filter/detection/typeDetection/TypeDetection.java b/filter/qa/complex/filter/detection/typeDetection/TypeDetection.java
index 7a81eae0ff4d..ecf1c3251c2e 100644
--- a/filter/qa/complex/filter/detection/typeDetection/TypeDetection.java
+++ b/filter/qa/complex/filter/detection/typeDetection/TypeDetection.java
@@ -463,7 +463,7 @@ public class TypeDetection extends ComplexTestCase {
String fileType = helper.getTypeforfileAlias(fileAlias);
PropertyValue[] MediaDescriptor = helper.createMediaDescriptor(
- new String[] {"URL", "DocumentSerivce"},
+ new String[] {"URL", "DocumentService"},
new Object[] {fileURL, serviceName});
log.println("check " + fileAlias);
diff --git a/filter/source/config/cache/basecontainer.cxx b/filter/source/config/cache/basecontainer.cxx
index 7c449c1b13b0..c998ec6c7d13 100644
--- a/filter/source/config/cache/basecontainer.cxx
+++ b/filter/source/config/cache/basecontainer.cxx
@@ -480,7 +480,7 @@ void SAL_CALL BaseContainer::flush()
}
catch(const css::uno::Exception& ex)
{
- // Dont remove the clone. May be the outside
+ // Don't remove the clone. May be the outside
// user wish to repair it now and calls flush()
// later again ...
@@ -515,7 +515,7 @@ void SAL_CALL BaseContainer::flush()
try
{
// ... this pointer can be interesting to find out, where will be called as listener
- // Dont optimize it to a direct iterator cast :-)
+ // Don't optimize it to a direct iterator cast :-)
css::util::XFlushListener* pListener = static_cast<css::util::XFlushListener*>(pIterator.next());
pListener->flushed(aSource);
}
diff --git a/filter/source/config/cache/configflush.cxx b/filter/source/config/cache/configflush.cxx
index 2bf04cc66a6c..6d4091346c86 100644
--- a/filter/source/config/cache/configflush.cxx
+++ b/filter/source/config/cache/configflush.cxx
@@ -73,7 +73,7 @@ void SAL_CALL ConfigFlush::refresh()
try
{
// ... this pointer can be interesting to find out, where will be called as listener
- // Dont optimize it to a direct iterator cast :-)
+ // Don't optimize it to a direct iterator cast :-)
css::util::XRefreshListener* pListener = static_cast<css::util::XRefreshListener*>(pIterator.next());
pListener->refreshed(aSource);
}
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index 68a26b6188df..aaa7dfbbaa56 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -124,7 +124,7 @@ FilterCache* FilterCache::clone() const
FilterCache* pClone = new FilterCache();
- // Dont copy the configuration access points here.
+ // Don't copy the configuration access points here.
// They will be created on demand inside the cloned instance,
// if they are needed.
@@ -156,8 +156,8 @@ void FilterCache::takeOver(const FilterCache& rClone)
::osl::ResettableMutexGuard aLock(m_aLock);
// a)
- // Dont copy the configuration access points here!
- // We must use our own ones ...
+ // Don't copy the configuration access points here!
+ // We must use our own ones...
// b)
// Further we can ignore the uno service manager.
@@ -1110,7 +1110,7 @@ void FilterCache::impl_validateAndOptimize()
#if OSL_DEBUG_LEVEL > 0
- // Dont check cross references between types and filters, if
+ // Don't check cross references between types and filters, if
// not all filters read from disk!
// OK - this cache can read single filters on demand too ...
// but then the fill state of this cache should not be set to E_CONTAINS_FILTERS!
@@ -2177,7 +2177,7 @@ void FilterCache::impl_readOldFormat()
m_lFilters[pItems[i]] = impl_readOldItem(xSet, E_FILTER, pItems[i]);
}
}
- /* corrupt filter addon ? because it's external (optional) code .. we can ignore it. Addon wont work then ...
+ /* corrupt filter addon? Because it's external (optional) code.. we can ignore it. Addon won't work then...
but that seems to be acceptable.
see #139088# for further information
*/
diff --git a/filter/source/config/cache/filterfactory.cxx b/filter/source/config/cache/filterfactory.cxx
index a9f0abf905e8..604476c11d96 100644
--- a/filter/source/config/cache/filterfactory.cxx
+++ b/filter/source/config/cache/filterfactory.cxx
@@ -498,7 +498,7 @@ OUStringList FilterFactory::impl_getSortedFilterListForModule(const OUString& sM
aLock.clear();
// <- SAFE ----------------------
- // bring "other" filters in an alphabeticly order
+ // bring "other" filters in an alphabetical order
// It's needed below.
::std::sort(lOtherFilters.begin(), lOtherFilters.end());
diff --git a/filter/source/config/cache/typedetection.cxx b/filter/source/config/cache/typedetection.cxx
index 4031c93271a0..19d2846b623f 100644
--- a/filter/source/config/cache/typedetection.cxx
+++ b/filter/source/config/cache/typedetection.cxx
@@ -640,7 +640,7 @@ bool TypeDetection::impl_getPreselectionForType(
bool bBreakDetection = false;
// Further we must know if it matches by pattern
- // Every flat detected type by pattern wont be detected deep!
+ // Every flat detected type by pattern won't be detected deep!
bool bMatchByPattern = false;
// And we must know if a preselection must be preferred, because