summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-06-14 22:42:53 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-06-22 12:34:34 +0200
commitd91df3d3c69790c6f0fbb2cdd99c26ebaa01e199 (patch)
treea73fcd48c47dd65de2eda2f6d7fce01949b71711 /framework
parent40ed0e9af224888ac7f42fbedaa425cc2d54902d (diff)
Fix typo
Change-Id: Ia487ac5af064184d3e7c598e2edcee80b949a857 Reviewed-on: https://gerrit.libreoffice.org/74558 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'framework')
-rw-r--r--framework/source/services/modulemanager.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/services/modulemanager.cxx b/framework/source/services/modulemanager.cxx
index 25c7cda3048b..d8b24d3aef76 100644
--- a/framework/source/services/modulemanager.cxx
+++ b/framework/source/services/modulemanager.cxx
@@ -318,14 +318,14 @@ css::uno::Reference< css::container::XEnumeration > SAL_CALL ModuleManager::crea
OUString ModuleManager::implts_identify(const css::uno::Reference< css::uno::XInterface >& xComponent)
{
// Search for an optional (!) interface XModule first.
- // Its used to overrule an existing service name. Used e.g. by our database form designer
+ // It's used to overrule an existing service name. Used e.g. by our database form designer
// which uses a writer module internally.
css::uno::Reference< css::frame::XModule > xModule(xComponent, css::uno::UNO_QUERY);
if (xModule.is())
return xModule->getIdentifier();
- // detect modules in a generic way ...
- // comparing service names with configured entries ...
+ // detect modules in a generic way...
+ // comparing service names with configured entries...
css::uno::Reference< css::lang::XServiceInfo > xInfo(xComponent, css::uno::UNO_QUERY);
if (!xInfo.is())
return OUString();