Just use Any ctor instead of makeAny in embedserv
Change-Id: I2e5f94454a9e5d157cec1f883546655e8c11bd1e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133818 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
parent
720c0d61b0
commit
562499b75a
1 changed files with 2 additions and 2 deletions
|
@ -829,7 +829,7 @@ void DocumentHolder::show()
|
|||
if ( xLMProps.is() )
|
||||
{
|
||||
xLMProps->setPropertyValue("MenuBarCloser",
|
||||
uno::makeAny( uno::Reference< frame::XStatusListener >() ) );
|
||||
uno::Any( uno::Reference< frame::XStatusListener >() ) );
|
||||
}
|
||||
|
||||
if ( !m_bLink )
|
||||
|
@ -1008,7 +1008,7 @@ IDispatch* DocumentHolder::GetIDispatch()
|
|||
|
||||
try {
|
||||
uno::Any anyResult = xSupplier->createBridge(
|
||||
uno::makeAny( m_xDocument ),
|
||||
uno::Any( m_xDocument ),
|
||||
aProcId,
|
||||
bridge::ModelDependent::UNO,
|
||||
bridge::ModelDependent::OLE );
|
||||
|
|
Loading…
Reference in a new issue