diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 17:09:34 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 17:09:34 +0200 |
commit | 8332db757c894344d78b3cac650f53b2a3f320bc (patch) | |
tree | ac0c4e3eec03a252223bdc46f0da3cde91d491dc /svx | |
parent | 66bdcb96ed9320398e57b06aabc30bd225de0cfa (diff) |
loplugin:override
Change-Id: Ia2445bb53ea3508ee3be4e3eb5eb031e26f1bf9c
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/crashreportdlg.hxx | 2 | ||||
-rw-r--r-- | svx/source/dialog/crashreportui.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/crashreportdlg.hxx b/svx/source/dialog/crashreportdlg.hxx index 3f3cb402281a..fba81d8af39a 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 eaa6a8e3b4d6..2b29da378fc1 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 |