diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-09-02 21:23:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-09-02 22:18:37 +0200 |
commit | 4a63d78ded7b11c7b820d2c941a0c9aed18326fc (patch) | |
tree | 6c183e1b3c8d0d4f95bba20e72842b46272e7863 | |
parent | 90e2f53ec571a8035b8eabdaa0310b2bb1ab3559 (diff) |
Fix platform-specific library name
Change-Id: I3a626260d7e48daef7b6f78b814730849135b4e2
Reviewed-on: https://gerrit.libreoffice.org/78419
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | vcl/source/window/builder.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx index a50072d5fa50..2c4d6c3119da 100644 --- a/vcl/source/window/builder.cxx +++ b/vcl/source/window/builder.cxx @@ -2186,7 +2186,7 @@ VclPtr<vcl::Window> VclBuilder::makeObject(vcl::Window *pParent, const OString & { #ifndef DISABLE_DYNLOADING customMakeWidget pFunction = nullptr; - ModuleMap::iterator aI = g_aModuleMap.find("libsfxlo.so"); + ModuleMap::iterator aI = g_aModuleMap.find(SAL_DLLPREFIX "sfxlo" SAL_DLLEXTENSION); pFunction = reinterpret_cast<customMakeWidget>(aI->second->getFunctionSymbol("makeNotebookbarToolBox")); NotebookBarAddonsMerger::MergeNotebookBarAddons( pParent, pFunction, m_xFrame, m_pNotebookBarAddonsItem, rMap ); #endif |