diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-12-20 18:19:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-12-20 20:46:28 +0100 |
commit | 21cd30ddaa4591e058848c19920c7845582f35eb (patch) | |
tree | b524b82f705b9e67414a1fbde179af96b22fb8ba /basic | |
parent | 87834219c5e09880e48e28fd8a0f796a0848e39b (diff) |
Blind fix for Windows x86-64 build
...after 46c5de832868d2812448b2caace3eeaa9237b9f6 "make *String(string_view)
constructors explicit"
Change-Id: I6a1d54e8dbcd98027122d33e6b6544ce00b09624
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108052
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/dllmgr-x64.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx index 9e6d6838fe6a..8b6b4b4c3811 100644 --- a/basic/source/runtime/dllmgr-x64.cxx +++ b/basic/source/runtime/dllmgr-x64.cxx @@ -770,7 +770,7 @@ ErrCode SbiDllMgr::Call( if (cdeclConvention) { return ERRCODE_BASIC_NOT_IMPLEMENTED; } - OUString dllName(fullDllName(library)); + OUString dllName(fullDllName(OUString(library))); Dll * dll = impl_->getDll(dllName); if (dll == nullptr) { return ERRCODE_BASIC_BAD_DLL_LOAD; |