diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/Library_svx.mk | 8 | ||||
-rw-r--r-- | svx/source/dialog/crashreportdlg.cxx | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/svx/Library_svx.mk b/svx/Library_svx.mk index 2233de44eb35..359e231fd6f7 100644 --- a/svx/Library_svx.mk +++ b/svx/Library_svx.mk @@ -40,14 +40,6 @@ $(eval $(call gb_Library_add_defs,svx,\ $(eval $(call gb_Library_set_precompiled_header,svx,$(SRCDIR)/svx/inc/pch/precompiled_svx)) -ifeq ($(ENABLE_BREAKPAD),TRUE) - -$(eval $(call gb_Library_use_static_libraries,svx, \ - minidump \ -)) - -endif - $(eval $(call gb_Library_use_libraries,svx,\ basegfx \ sb \ diff --git a/svx/source/dialog/crashreportdlg.cxx b/svx/source/dialog/crashreportdlg.cxx index b2aff8ee23d4..3d6b61acb7d9 100644 --- a/svx/source/dialog/crashreportdlg.cxx +++ b/svx/source/dialog/crashreportdlg.cxx @@ -60,7 +60,7 @@ IMPL_LINK_TYPED(CrashReportDialog, BtnHdl, Button*, pBtn, void) std::string ini_path = CrashReporter::getIniFileName(); std::string response; - bool bSuccess = readConfig(ini_path, response); + bool bSuccess = crashreport::readConfig(ini_path, response); OUString aCrashID = OUString::createFromAscii(response.c_str()); |