basctl/source/dlged/dlged.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3db0b7549e198ac0719ff52bff38a3d79e212083
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Wed May 4 22:33:52 2022 +0200
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Thu May 5 07:13:20 2022 +0200

    Just use Any ctor instead of makeAny in basctl
    
    Change-Id: I4bd58031623dea1243193aaa60f6ca5bb0f7d562
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133849
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/basctl/source/dlged/dlged.cxx b/basctl/source/dlged/dlged.cxx
index 69ffb81f3579..81fa3f14e837 100644
--- a/basctl/source/dlged/dlged.cxx
+++ b/basctl/source/dlged/dlged.cxx
@@ -789,7 +789,7 @@ void DlgEditor::Copy()
         Sequence< Any > aSeqData
         {
             aNoResourceDialogModelBytesAny,
-            makeAny(aCombinedData)
+            Any(aCombinedData)
         };
 
         pTrans = new DlgEdTransferableImpl( m_ClipboardDataFlavorsResource, 
aSeqData );
@@ -797,7 +797,7 @@ void DlgEditor::Copy()
     else
     {
         // No resource, support only old format
-        pTrans = new DlgEdTransferableImpl( m_ClipboardDataFlavors , { 
makeAny(DialogModelBytes) } );
+        pTrans = new DlgEdTransferableImpl( m_ClipboardDataFlavors , { 
Any(DialogModelBytes) } );
     }
     SolarMutexReleaser aReleaser;
     xClipboard->setContents( pTrans , pTrans );

Reply via email to