Just use Any ctor instead of makeAny in winaccessibility
Change-Id: I402a77499daaa1a08beca8165199f266733aa1d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133712 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
parent
86a006d826
commit
103a6bab82
1 changed files with 1 additions and 1 deletions
|
@ -1892,7 +1892,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP CMAccessible::get_groupPosition(long __RPC_FAR
|
|||
Reference< XAccessibleGroupPosition > xGroupPosition( pRContext, UNO_QUERY );
|
||||
if ( xGroupPosition.is() )
|
||||
{
|
||||
Sequence< sal_Int32 > rSeq = xGroupPosition->getGroupPosition( makeAny( pRContext ) );
|
||||
Sequence< sal_Int32 > rSeq = xGroupPosition->getGroupPosition( Any( pRContext ) );
|
||||
if (rSeq.getLength() >= 3)
|
||||
{
|
||||
*groupLevel = rSeq[0];
|
||||
|
|
Loading…
Reference in a new issue