summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-17 19:39:12 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-01-17 21:03:44 +0100
commit970b76816a03be0f57f35a790bea57bf299e344b (patch)
tree445ca13da577f649176f92dea60c7fc7e8053840 /cppuhelper
parent53e6785f303e5b308a497e12d411251b216eaabf (diff)
Fix typos
Change-Id: Id1c7ddf6c49ec709e38947a82731fe31a64aad04 Reviewed-on: https://gerrit.libreoffice.org/48076 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/servicemanager.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppuhelper/source/servicemanager.cxx b/cppuhelper/source/servicemanager.cxx
index 556440dc8733..d51ce6bd6292 100644
--- a/cppuhelper/source/servicemanager.cxx
+++ b/cppuhelper/source/servicemanager.cxx
@@ -738,7 +738,7 @@ void cppuhelper::ServiceManager::addSingletonContextEntries(
assert(i->second[0].get() != nullptr);
SAL_INFO_IF(
i->second.size() > 1, "cppuhelper",
- "Arbitrarily chosing " << i->second[0]->info->name
+ "Arbitrarily choosing " << i->second[0]->info->name
<< " among multiple implementations for " << i->first);
entries->push_back(
cppu::ContextEntry_Init(
@@ -1641,7 +1641,7 @@ bool cppuhelper::ServiceManager::insertExtraData(Data const & extra) {
assert(i->second[0].get() != nullptr);
SAL_INFO_IF(
i->second.size() > 1, "cppuhelper",
- "Arbitrarily chosing " << i->second[0]->info->name
+ "Arbitrarily choosing " << i->second[0]->info->name
<< " among multiple implementations for singleton "
<< i->first);
try {
@@ -1792,7 +1792,7 @@ cppuhelper::ServiceManager::findServiceImplementation(
assert(!i->second.empty());
SAL_INFO_IF(
i->second.size() > 1, "cppuhelper",
- "Arbitrarily chosing " << i->second[0]->info->name
+ "Arbitrarily choosing " << i->second[0]->info->name
<< " among multiple implementations for " << i->first);
impl = i->second[0];
}