[Libreoffice-commits] core.git: Branch 'feature/cib_contract57b' - desktop/source

Samuel Mehrbrodt (via logerrit) logerrit at kemper.freedesktop.org
Wed May 8 10:15:05 UTC 2019


 desktop/source/app/app.cxx |    7 +++++++
 1 file changed, 7 insertions(+)

New commits:
commit 6b4f38893c7a1666738b40d858b6ae3c404aee67
Author:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
AuthorDate: Wed May 8 12:13:51 2019 +0200
Commit:     Thorsten Behrens <Thorsten.Behrens at CIB.de>
CommitDate: Wed May 8 12:13:51 2019 +0200

    Load explorerframe.dll at startup
    
    Change-Id: Idbee388aafe56bd6b607fb25b2d5d653d2c7fd60

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 03dcdf477817..3fa087f36f38 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -109,6 +109,7 @@
 #include <svtools/accessibilityoptions.hxx>
 #include <svtools/apearcfg.hxx>
 #include <vcl/graphicfilter.hxx>
+#include <osl/module.hxx>
 
 #include "langselect.hxx"
 
@@ -523,6 +524,12 @@ Desktop::Desktop()
     , m_aBootstrapError(BE_OK)
     , m_aBootstrapStatus(BS_OK)
 {
+    static ::osl::Module aMod;
+    aMod.load("explorerframe.dll");
+    if (aMod.is())
+        SAL_WARN("desktop.app", "loading explorerframe.dll successful");
+    else
+        SAL_WARN("desktop.app", "loading explorerframe.dll failed");
 }
 
 Desktop::~Desktop()


More information about the Libreoffice-commits mailing list