diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-08 10:25:58 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-10 08:21:20 +0000 |
commit | 001e694ecd21095b6fcfb5632ace63d8e0c2b7f8 (patch) | |
tree | 6a78b42161a396b3a63e55a4e5c2fa45d76311c2 /include/vcl/tabctrl.hxx | |
parent | f06f06d50393184f1ca2e27db6167b08edc26cb3 (diff) |
loplugin:unusedmethods vcl(part2)
Change-Id: I12356b3fdce68282a30cae2b270b02e46558860a
Reviewed-on: https://gerrit.libreoffice.org/16847
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vcl/tabctrl.hxx')
-rw-r--r-- | include/vcl/tabctrl.hxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/vcl/tabctrl.hxx b/include/vcl/tabctrl.hxx index 4a6a53041442..3d4ab0533e3c 100644 --- a/include/vcl/tabctrl.hxx +++ b/include/vcl/tabctrl.hxx @@ -140,9 +140,6 @@ public: void SelectTabPage( sal_uInt16 nPageId ); void SetMaxPageWidth( long nMaxWidth ) { mnMaxPageWidth = nMaxWidth; } - long GetMaxPageWidth() const { return mnMaxPageWidth; } - void ResetMaxPageWidth() { SetMaxPageWidth( 0 ); } - bool IsMaxPageWidth() const { return mnMaxPageWidth != 0; } void SetTabPage( sal_uInt16 nPageId, TabPage* pPage ); TabPage* GetTabPage( sal_uInt16 nPageId ) const; @@ -161,18 +158,12 @@ public: void SetPageImage( sal_uInt16 nPageId, const Image& rImage ); - void SetHelpText( const OUString& rText ) - { Control::SetHelpText( rText ); } - const OUString& GetHelpText() const - { return Control::GetHelpText(); } - void SetHelpId( const OString& rId ) { Control::SetHelpId( rId ); } const OString& GetHelpId() const { return Control::GetHelpId(); } void SetActivatePageHdl( const Link<>& rLink ) { maActivateHdl = rLink; } - const Link<>& GetActivatePageHdl() const { return maActivateHdl; } void SetDeactivatePageHdl( const Link<TabControl *, bool>& rLink ) { maDeactivateHdl = rLink; } // returns (control relative) bounding rectangle for the |