sfx2/source/appl/appinit.cxx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-)
New commits: commit 6b39072d441dca5265c6f1ae1d66354617037d52 Author: Noel Grandin <noelgran...@gmail.com> AuthorDate: Fri Sep 19 11:10:30 2025 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Fri Sep 19 13:51:45 2025 +0200 tdf#166483 special char dialog not available with mergedlibs build Change-Id: I08cc1fe82845cfea82150e332b0ea0ad597f6cda Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191189 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> (cherry picked from commit 9f4304ff2dbb706a1160afd347e538e615e1290f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191192 Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com> diff --git a/sfx2/source/appl/appinit.cxx b/sfx2/source/appl/appinit.cxx index 76f9b0fc75c6..2356099ecc88 100644 --- a/sfx2/source/appl/appinit.cxx +++ b/sfx2/source/appl/appinit.cxx @@ -148,7 +148,14 @@ static OUString SfxGetSpecialCharsForEdit(weld::Widget* pParent, const vcl::Font PFunc_getSpecialCharsForEdit pfunc = nullptr; #ifndef DISABLE_DYNLOADING osl::Module aMod; - aMod.loadRelative(&thisModule, SVLIBRARY("cui")); + aMod.loadRelative( + &thisModule, +#if ENABLE_MERGELIBS + SVLIBRARY("merged") +#else + SVLIBRARY("cui") +#endif + ); // get symbol pfunc = reinterpret_cast<PFunc_getSpecialCharsForEdit>(aMod.getFunctionSymbol("GetSpecialCharsForEdit"));