[Libreoffice-commits] core.git: basic/source

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Mon Dec 21 06:30:31 UTC 2020


 basic/source/runtime/dllmgr-x64.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 803cef388d4828593a7201958c57cd0eb4f92c95
Author:     Noel Grandin <noel at peralex.com>
AuthorDate: Sun Dec 20 21:52:44 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Mon Dec 21 07:29:49 2020 +0100

    fix for Windows x86-64 build
    
    ...after 46c5de832868d2812448b2caace3eeaa9237b9f6 "make *String(string_view)
    constructors explicit"
    
    Change-Id: I85138de39d7d7f9fa4ce3c14acf60b770c2f1d4e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108059
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx
index 8b6b4b4c3811..46f7fec3d204 100644
--- a/basic/source/runtime/dllmgr-x64.cxx
+++ b/basic/source/runtime/dllmgr-x64.cxx
@@ -776,7 +776,7 @@ ErrCode SbiDllMgr::Call(
         return ERRCODE_BASIC_BAD_DLL_LOAD;
     }
     ProcData proc;
-    ErrCode e = dll->getProc(function, &proc);
+    ErrCode e = dll->getProc(OUString(function), &proc);
     if (e != ERRCODE_NONE) {
         return e;
     }


More information about the Libreoffice-commits mailing list