diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-09 13:37:03 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-12 06:14:02 +0000 |
commit | 198f3ec116996788be1d73f9462ecb808b78f309 (patch) | |
tree | 52dc3868d3ae0821aebc18c1ebffa6382b0882cd /vcl | |
parent | 6cc5d37d87406671ac76e94a43f8a57f346caaaf (diff) |
loplugin:unusedmethods
Change-Id: I0fb06079ff8a9d0b2f5a2929f31846f91391f5c4
Reviewed-on: https://gerrit.libreoffice.org/22229
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/bmpfast.cxx | 1 | ||||
-rw-r--r-- | vcl/source/window/menubarwindow.hxx | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/vcl/source/gdi/bmpfast.cxx b/vcl/source/gdi/bmpfast.cxx index bed0528b8a00..e912310c252d 100644 --- a/vcl/source/gdi/bmpfast.cxx +++ b/vcl/source/gdi/bmpfast.cxx @@ -50,7 +50,6 @@ public: void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const; void SetAlpha( PIXBYTE a ) const; - void operator++(int); }; // template specializations for truecolor pixel formats diff --git a/vcl/source/window/menubarwindow.hxx b/vcl/source/window/menubarwindow.hxx index 592f962047ba..9abc478a7764 100644 --- a/vcl/source/window/menubarwindow.hxx +++ b/vcl/source/window/menubarwindow.hxx @@ -127,9 +127,6 @@ public: virtual void Resize() override; virtual void RequestHelp( const HelpEvent& rHEvt ) override; - void SetFocusId(const VclPtr<vcl::Window>& xId) { xSaveFocusId = xId; } - VclPtr<vcl::Window> GetFocusId() const { return xSaveFocusId; } - void SetMenu(MenuBar* pMenu); void SetHeight(long nHeight); void KillActivePopup(); |