diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-06 18:37:21 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-09 08:08:56 +0000 |
commit | 5ab7806d6c8e2d155fc022ace19f83afbe5f9e68 (patch) | |
tree | 46d64fdf4c012ceef017a2f186d8d826bfadd242 /include/vcl | |
parent | a622aaf28fbf01a4de44c9e5c2c85b46bf63697b (diff) |
remove unused Link<> fields
Change-Id: Ifed1a8cfa774225cb450bb211b1b1b949ef02811
Reviewed-on: https://gerrit.libreoffice.org/18429
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/menu.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx index 1d22bdc22eb6..46149cc37cc5 100644 --- a/include/vcl/menu.hxx +++ b/include/vcl/menu.hxx @@ -413,8 +413,6 @@ VCL_DLLPUBLIC void Invalidated(); class VCL_DLLPUBLIC MenuBar : public Menu { Link<void*,void> maCloseHdl; - Link<> maFloatHdl; - Link<> maHideHdl; bool mbCloseBtnVisible : 1; bool mbFloatBtnVisible : 1; bool mbHideBtnVisible : 1; @@ -470,8 +468,6 @@ public: void SetCloseButtonClickHdl( const Link<void*,void>& rLink ) { maCloseHdl = rLink; } const Link<void*,void>& GetCloseButtonClickHdl() const { return maCloseHdl; } - const Link<>& GetFloatButtonClickHdl() const { return maFloatHdl; } - const Link<>& GetHideButtonClickHdl() const { return maHideHdl; } // - by default a menubar is displayable // - if a menubar is not displayable, its MenuBarWindow will never be shown |