summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2020-12-20 21:52:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-12-21 07:29:49 +0100
commit803cef388d4828593a7201958c57cd0eb4f92c95 (patch)
tree1b6d6ac186552e29515fb76acd799edb93dfaf87 /basic
parentb8aef73735677bc8effebecc25a9a8c4ed4990a1 (diff)
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@collabora.co.uk>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/dllmgr-x64.cxx2
1 files changed, 1 insertions, 1 deletions
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;
}