From 5e2284de5bcfd95f21b3d85998f336999fa9ff3e Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 29 Feb 2016 21:56:49 +0100 Subject: desktop: fix undefined CrashReporter::AddKeyValue on MSVC Change-Id: Ie10b4849957734c2548c73dff8485cc673769e13 --- include/desktop/crashreport.hxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'include/desktop') diff --git a/include/desktop/crashreport.hxx b/include/desktop/crashreport.hxx index c6d72be92ffb..05b1fd81a835 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); -- cgit