diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-16 08:11:27 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-16 08:37:25 +0000 |
commit | 7ab881a57d01e58eebcc2608ae8dd61af4552ae8 (patch) | |
tree | e8a5a50805ebd653834adbb03e7e98b8b6f22dc6 /cui/source | |
parent | 795ac5bc53f6c15f2ab4634201747eb1c3e3331f (diff) |
loplugin:unusedmethods editeng
Change-Id: I15b2be5a9cd6e72447b674a65eabe9f89cb6ff12
Reviewed-on: https://gerrit.libreoffice.org/17115
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/factory/dlgfact.cxx | 20 | ||||
-rw-r--r-- | cui/source/factory/dlgfact.hxx | 4 |
2 files changed, 0 insertions, 24 deletions
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index deb061ea694d..b481e00d03ce 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -342,26 +342,6 @@ OUString AbstractThesaurusDialog_Impl::GetWord() return pDlg->GetWord(); }; -sal_uInt16 AbstractThesaurusDialog_Impl::GetLanguage() const -{ - return pDlg->GetLanguage(); -}; - -vcl::Window* AbstractThesaurusDialog_Impl::GetWindow() -{ - return pDlg; -} - -void AbstractHyphenWordDialog_Impl::SelLeft() -{ - pDlg->SelLeft(); -} - -void AbstractHyphenWordDialog_Impl::SelRight() -{ - pDlg->SelRight(); -} - vcl::Window* AbstractHyphenWordDialog_Impl::GetWindow() { return pDlg; diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index dd10939008ea..8e86679cc584 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -166,15 +166,11 @@ class AbstractThesaurusDialog_Impl : public AbstractThesaurusDialog { DECL_ABSTDLG_BASE(AbstractThesaurusDialog_Impl,SvxThesaurusDialog) virtual OUString GetWord() SAL_OVERRIDE; - virtual sal_uInt16 GetLanguage() const SAL_OVERRIDE; - virtual vcl::Window* GetWindow() SAL_OVERRIDE; }; class AbstractHyphenWordDialog_Impl: public AbstractHyphenWordDialog { DECL_ABSTDLG_BASE(AbstractHyphenWordDialog_Impl,SvxHyphenWordDialog) - virtual void SelLeft() SAL_OVERRIDE; - virtual void SelRight() SAL_OVERRIDE; virtual vcl::Window* GetWindow() SAL_OVERRIDE; }; |