[Libreoffice-commits] core.git: include/desktop
Michael Stahl
mstahl at redhat.com
Mon Feb 29 20:59:39 UTC 2016
include/desktop/crashreport.hxx | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
New commits:
commit 5e2284de5bcfd95f21b3d85998f336999fa9ff3e
Author: Michael Stahl <mstahl at 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);
More information about the Libreoffice-commits
mailing list