diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-19 14:40:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-30 07:20:51 +0100 |
commit | 20e5f64215853bdd32c5f16394ba7f2f36745904 (patch) | |
tree | dab302d397def2f9a04cf9f3f9e170b0ef2c84b9 /sw/source/ui | |
parent | 036b51dbc49b533d1db773d8627d56ab86bca487 (diff) |
loplugin:unused-returns in sw
Change-Id: I753fcdd35d461880a8d8160213cabd465cfde967
Reviewed-on: https://gerrit.libreoffice.org/48189
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/dialog/swdlgfact.cxx | 4 | ||||
-rw-r--r-- | sw/source/ui/dialog/swdlgfact.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/dialog/swdlgfact.cxx b/sw/source/ui/dialog/swdlgfact.cxx index 92ee1da54e64..031efef1198e 100644 --- a/sw/source/ui/dialog/swdlgfact.cxx +++ b/sw/source/ui/dialog/swdlgfact.cxx @@ -617,9 +617,9 @@ OUString AbstractMailMergeWizard_Impl::GetReloadDocument() const return pDlg->GetReloadDocument(); } -bool AbstractMailMergeWizard_Impl::ShowPage( sal_uInt16 nLevel ) +void AbstractMailMergeWizard_Impl::ShowPage( sal_uInt16 nLevel ) { - return pDlg->skipUntil(nLevel); + pDlg->skipUntil(nLevel); } sal_uInt16 AbstractMailMergeWizard_Impl::GetRestartPage() const diff --git a/sw/source/ui/dialog/swdlgfact.hxx b/sw/source/ui/dialog/swdlgfact.hxx index 1932db3eeba5..2eeca35fa7f8 100644 --- a/sw/source/ui/dialog/swdlgfact.hxx +++ b/sw/source/ui/dialog/swdlgfact.hxx @@ -363,7 +363,7 @@ public: virtual sal_Int32 GetResult() override; virtual OUString GetReloadDocument() const override; - virtual bool ShowPage( sal_uInt16 nLevel ) override; + virtual void ShowPage( sal_uInt16 nLevel ) override; virtual sal_uInt16 GetRestartPage() const override; }; |