[Libreoffice-commits] core.git: 2 commits - svx/source

Stephan Bergmann sbergman at redhat.com
Tue Mar 1 08:30:07 UTC 2016


 svx/source/dialog/crashreportdlg.cxx |    2 +-
 svx/source/dialog/crashreportdlg.hxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8ab503a871bf884187381f75cfd15808c340e5c5
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Mar 1 09:29:18 2016 +0100

    loplugin:sallogareas
    
    Change-Id: I2cd994a4f497a59f33e6ed3a23388565fd7b88c2

diff --git a/svx/source/dialog/crashreportdlg.cxx b/svx/source/dialog/crashreportdlg.cxx
index 23f0bbe..091432f 100644
--- a/svx/source/dialog/crashreportdlg.cxx
+++ b/svx/source/dialog/crashreportdlg.cxx
@@ -57,7 +57,7 @@ IMPL_LINK_TYPED(CrashReportDialog, BtnHdl, Button*, pBtn, void)
         std::string ini_path = CrashReporter::getIniFileName();
         OString aCommand = getLibDir().copy(7) + "/minidump_upload " + ini_path.c_str();
         int retVal = std::system(aCommand.getStr());
-        SAL_WARN_IF(retVal != 0, "crashreport", "Failed to upload minidump. Error Code: " << retVal);
+        SAL_WARN_IF(retVal != 0, "svx.dialog", "Failed to upload minidump. Error Code: " << retVal);
         // TODO: moggi: return the id for the user to look it up
         Close();
     }
commit 33e7228678813f20dd46d8218d0595ce03e022f1
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Mar 1 09:28:32 2016 +0100

    loplugin:override
    
    Change-Id: Ib051a2468b219aeae9eedef6d6930ea67815ab6e

diff --git a/svx/source/dialog/crashreportdlg.hxx b/svx/source/dialog/crashreportdlg.hxx
index e6041f8..a7f22e2 100644
--- a/svx/source/dialog/crashreportdlg.hxx
+++ b/svx/source/dialog/crashreportdlg.hxx
@@ -19,7 +19,7 @@ public:
 
     CrashReportDialog(vcl::Window* pParent);
 
-    ~CrashReportDialog();
+    virtual ~CrashReportDialog();
 
     virtual void dispose() override;
 


More information about the Libreoffice-commits mailing list