diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-11 08:39:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-11 10:49:24 +0200 |
commit | 889fc93087ae1b57348803014c0a6090fd48c06f (patch) | |
tree | 9773c8cb5a9589d52fc0af5a2c56680c30aa3a5b /cui/source/inc/iconcdlg.hxx | |
parent | db48f40e0777e566627852aeca92588869498adb (diff) |
loplugin:unusedmethods unused return value in cui
Change-Id: Ib65ceeeb5e1be0de5e3808e652e910fff3820bf8
Diffstat (limited to 'cui/source/inc/iconcdlg.hxx')
-rw-r--r-- | cui/source/inc/iconcdlg.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cui/source/inc/iconcdlg.hxx b/cui/source/inc/iconcdlg.hxx index a852d92828a0..76d8d37f71c8 100644 --- a/cui/source/inc/iconcdlg.hxx +++ b/cui/source/inc/iconcdlg.hxx @@ -164,7 +164,7 @@ protected: static void RefreshInputSet(); void ActivatePageImpl (); - bool DeActivatePageImpl (); + void DeActivatePageImpl (); void ResetPageImpl (); short Ok(); @@ -191,11 +191,8 @@ public: const sal_uInt16* GetInputRanges( const SfxItemPool& ); void SetInputSet( const SfxItemSet* pInSet ); - const OKButton& GetOKButton() const { return *m_pOKBtn; } OKButton& GetOKButton() { return *m_pOKBtn; } - const PushButton& GetApplyButton() const { return *m_pApplyBtn; } PushButton& GetApplyButton() { return *m_pApplyBtn; } - const CancelButton& GetCancelButton() const { return *m_pCancelBtn; } CancelButton& GetCancelButton() { return *m_pCancelBtn; } short Execute() override; |