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

Stephan Bergmann sbergman at redhat.com
Tue Sep 13 15:10:23 UTC 2016


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

New commits:
commit 8332db757c894344d78b3cac650f53b2a3f320bc
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Sep 13 17:09:34 2016 +0200

    loplugin:override
    
    Change-Id: Ia2445bb53ea3508ee3be4e3eb5eb031e26f1bf9c

diff --git a/svx/source/dialog/crashreportdlg.hxx b/svx/source/dialog/crashreportdlg.hxx
index 3f3cb40..fba81d8 100644
--- a/svx/source/dialog/crashreportdlg.hxx
+++ b/svx/source/dialog/crashreportdlg.hxx
@@ -22,7 +22,7 @@ public:
 
     explicit CrashReportDialog(vcl::Window* pParent);
 
-    virtual ~CrashReportDialog();
+    virtual ~CrashReportDialog() override;
 
     virtual void dispose() override;
 
diff --git a/svx/source/dialog/crashreportui.cxx b/svx/source/dialog/crashreportui.cxx
index eaa6a8e..2b29da3 100644
--- a/svx/source/dialog/crashreportui.cxx
+++ b/svx/source/dialog/crashreportui.cxx
@@ -25,7 +25,7 @@ class CrashReportUI : public ::cppu::WeakImplHelper< css::lang::XServiceInfo
 {
 public:
     explicit CrashReportUI(const css::uno::Reference< css::uno::XComponentContext >& xContext);
-    virtual ~CrashReportUI();
+    virtual ~CrashReportUI() override;
 
     // css.lang.XServiceInfo
 


More information about the Libreoffice-commits mailing list