From dbd3be9063233436dc0bd1cb5f982c9fc6e46463 Mon Sep 17 00:00:00 2001
From: Caolán McNamara
Date: Wed, 20 Feb 2019 17:21:31 +0000
Subject:
createInstanceWithContextAndArguments->createInstanceWithArgumentsAndContext
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Change-Id: Ie22398eb42f61e50177f88672a1407d9dda58f8a
Reviewed-on: https://gerrit.libreoffice.org/68106
Reviewed-by: Caolán McNamara
Tested-by: Caolán McNamara
---
cli_ure/source/climaker/climaker_emit.cxx | 2 +-
offapi/com/sun/star/configuration/AdministrationProvider.idl | 2 +-
offapi/com/sun/star/configuration/ConfigurationProvider.idl | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/cli_ure/source/climaker/climaker_emit.cxx b/cli_ure/source/climaker/climaker_emit.cxx
index f4526eb037a5..7ce1d9f71c82 100644
--- a/cli_ure/source/climaker/climaker_emit.cxx
+++ b/cli_ure/source/climaker/climaker_emit.cxx
@@ -1780,7 +1780,7 @@ Assembly ^ TypeEmitter::type_resolve(
ilGen->Emit(Emit::OpCodes::Ldloc, arLocalAny[i]);
ilGen->Emit(Emit::OpCodes::Stobj, typeAny);
}
- // call createInstanceWithContextAndArguments
+ // call createInstanceWithArgumentsAndContext
ilGen->Emit(Emit::OpCodes::Ldloc, local_factory);
ilGen->Emit(Emit::OpCodes::Ldstr, ustring_to_String(xServiceType->getName()));
ilGen->Emit(Emit::OpCodes::Ldloc, local_anyParams);
diff --git a/offapi/com/sun/star/configuration/AdministrationProvider.idl b/offapi/com/sun/star/configuration/AdministrationProvider.idl
index 1abccc557403..3e8f8546b78f 100644
--- a/offapi/com/sun/star/configuration/AdministrationProvider.idl
+++ b/offapi/com/sun/star/configuration/AdministrationProvider.idl
@@ -44,7 +44,7 @@ module com { module sun { module star { module configuration {
An implementation is usually obtained from a
com::sun::star::lang::ServiceManager. The arguments passed to
- com::sun::star::lang::XMultiComponentFactory::createInstanceWithContextAndArguments()
+ com::sun::star::lang::XMultiComponentFactory::createInstanceWithArgumentsAndContext()
select the configuration data source. They may also define the scope of
administrable data or contain credentials to be used to authorize the
administrative access. Missing parameters may be filled in
diff --git a/offapi/com/sun/star/configuration/ConfigurationProvider.idl b/offapi/com/sun/star/configuration/ConfigurationProvider.idl
index a51e936a0996..ff337bda2dfb 100644
--- a/offapi/com/sun/star/configuration/ConfigurationProvider.idl
+++ b/offapi/com/sun/star/configuration/ConfigurationProvider.idl
@@ -30,7 +30,7 @@ module com { module sun { module star { module configuration {
An implementation is usually obtained from a
com::sun::star::lang::ServiceManager. The arguments passed to
- com::sun::star::lang::XMultiComponentFactory::createInstanceWithContextAndArguments()
+ com::sun::star::lang::XMultiComponentFactory::createInstanceWithArgumentsAndContext()
select the configuration data source. Arguments must be provided as
com::sun::star::beans::NamedValue
or com::sun::star::beans::PropertyValue.
--
cgit