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

New commits:
commit 6b4f38893c7a1666738b40d858b6ae3c404aee67
Author:     Samuel Mehrbrodt <samuel.mehrbr...@cib.de>
AuthorDate: Wed May 8 12:13:51 2019 +0200
Commit:     Thorsten Behrens <thorsten.behr...@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()
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to