include/desktop/crashreport.hxx |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 5e2284de5bcfd95f21b3d85998f336999fa9ff3e
Author: Michael Stahl <mst...@redhat.com>
Date:   Mon Feb 29 21:56:49 2016 +0100

    desktop: fix undefined CrashReporter::AddKeyValue on MSVC
    
    Change-Id: Ie10b4849957734c2548c73dff8485cc673769e13

diff --git a/include/desktop/crashreport.hxx b/include/desktop/crashreport.hxx
index c6d72be..05b1fd8 100644
--- a/include/desktop/crashreport.hxx
+++ b/include/desktop/crashreport.hxx
@@ -28,7 +28,12 @@
  *      * AdapterDeviceId
  *
  */
-class CRASHREPORT_DLLPUBLIC CrashReporter
+class
+#if HAVE_FEATURE_BREAKPAD
+// MSVC 2013 has undefined symbols for inline functions if it's exported
+CRASHREPORT_DLLPUBLIC
+#endif
+/*class*/ CrashReporter
 {
 public:
     static void AddKeyValue(const OUString& rKey, const OUString& rValue);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to