diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-23 10:20:19 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-23 13:08:04 +0000 |
commit | 5d5465057292676e5b0ce213b7172ce0b576d32e (patch) | |
tree | db0213032f197c74c24f5aa566d59ee7b8505756 /sc | |
parent | 00a6992b97a806b183e368d412508801dc632f8b (diff) |
remove unused Link<> field
Change-Id: Iea23f5edd60d5ac214afa89d051cd4f900564343
Reviewed-on: https://gerrit.libreoffice.org/18804
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/funcpage.hxx | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/sc/source/ui/inc/funcpage.hxx b/sc/source/ui/inc/funcpage.hxx index 1e99143dd811..fcf2638e295c 100644 --- a/sc/source/ui/inc/funcpage.hxx +++ b/sc/source/ui/inc/funcpage.hxx @@ -52,7 +52,6 @@ class ScFuncPage : public TabPage { private: - Link<> aDoubleClickLink; Link<> aSelectionLink; FixedText aFtCategory; ListBox aLbCategory; @@ -72,24 +71,21 @@ protected: public: - ScFuncPage( vcl::Window* pParent); + ScFuncPage( vcl::Window* pParent); - void SetCategory(sal_uInt16 nCat); - void SetFunction(sal_uInt16 nFunc); - void SetFocus(); - sal_uInt16 GetCategory(); - sal_uInt16 GetFunction(); - sal_uInt16 GetFunctionEntryCount(); + void SetCategory(sal_uInt16 nCat); + void SetFunction(sal_uInt16 nFunc); + void SetFocus(); + sal_uInt16 GetCategory(); + sal_uInt16 GetFunction(); + sal_uInt16 GetFunctionEntryCount(); - sal_uInt16 GetFuncPos(const ScFuncDesc*); - const ScFuncDesc* GetFuncDesc( sal_uInt16 nPos ) const; - OUString GetSelFunctionName() const; + sal_uInt16 GetFuncPos(const ScFuncDesc*); + const ScFuncDesc* GetFuncDesc( sal_uInt16 nPos ) const; + OUString GetSelFunctionName() const; - void SetDoubleClickHdl( const Link<>& rLink ) { aDoubleClickLink = rLink; } - const Link<>& GetDoubleClickHdl() const { return aDoubleClickLink; } - - void SetSelectHdl( const Link<>& rLink ) { aSelectionLink = rLink; } - const Link<>& GetSelectHdl() const { return aSelectionLink; } + void SetSelectHdl( const Link<>& rLink ) { aSelectionLink = rLink; } + const Link<>& GetSelectHdl() const { return aSelectionLink; } }; |