diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-02-20 17:21:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-02-20 22:11:06 +0100 |
commit | dbd3be9063233436dc0bd1cb5f982c9fc6e46463 (patch) | |
tree | bad3f49ae96b7e75ddd2c47050ac33df0d535591 | |
parent | 45980b72480c4331f0884d8a0c7ef59e757e7aa6 (diff) |
createInstanceWithContextAndArguments->createInstanceWithArgumentsAndContext
Change-Id: Ie22398eb42f61e50177f88672a1407d9dda58f8a
Reviewed-on: https://gerrit.libreoffice.org/68106
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | cli_ure/source/climaker/climaker_emit.cxx | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/configuration/AdministrationProvider.idl | 2 | ||||
-rw-r--r-- | 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 { </p> <p>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 { <p>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. |