diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-04 09:41:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-04 11:52:53 +0200 |
commit | 1e0d5d0c98dd1128c4ab7a9dcc4e9ae2d2878390 (patch) | |
tree | b8e086843ebd746aa281b08045b710e58fbfa884 /include | |
parent | 89d26a4018626f43af9d3e15d3b9c49abdfde889 (diff) |
loplugin:unusedmethods
Change-Id: If88b11419fc6d483ef689d2199a347c00622e01c
Reviewed-on: https://gerrit.libreoffice.org/52358
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/basedlgs.hxx | 1 | ||||
-rw-r--r-- | include/sfx2/charwin.hxx | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx index f5f40b8d6748..e5110415dcf4 100644 --- a/include/sfx2/basedlgs.hxx +++ b/include/sfx2/basedlgs.hxx @@ -60,7 +60,6 @@ protected: SfxModalDialog(vcl::Window *pParent, const OUString& rID, const OUString& rUIXMLDescription); OUString& GetExtraData() { return aExtraData; } - void CreateOutputItemSet( SfxItemPool& rPool ); void CreateOutputItemSet( const SfxItemSet& rInput ); void SetInputSet( const SfxItemSet* pInSet ) { pInputSet = pInSet; } SfxItemSet* GetOutputSetImpl() { return pOutputSet; } diff --git a/include/sfx2/charwin.hxx b/include/sfx2/charwin.hxx index 197812142f07..976e1f3999cb 100644 --- a/include/sfx2/charwin.hxx +++ b/include/sfx2/charwin.hxx @@ -81,7 +81,6 @@ public: void SetFont( const vcl::Font& rFont ); void SetText( const OUString& rText ) override; - void SetHasInsert( bool bInsert ); void InsertCharToDoc(); void createContextMenu(); @@ -91,8 +90,6 @@ public: virtual Size GetOptimalSize() const override; void setMouseClickHdl(const Link<SvxCharViewControl*,void> &rLink); - void setClearClickHdl(const Link<SvxCharViewControl*,void> &rLink); - void setClearAllClickHdl(const Link<SvxCharViewControl*,void> &rLink); DECL_LINK(ContextMenuSelectHdl, Menu*, bool); @@ -111,7 +108,6 @@ private: Link<SvxCharViewControl*, void> maMouseClickHdl; Link<SvxCharViewControl*, void> maClearClickHdl; - Link<SvxCharViewControl*, void> maClearAllClickHdl; }; #endif |