Kaydet (Commit) 5d546505 authored tarafından Noel Grandin's avatar Noel Grandin

remove unused Link<> field

Change-Id: Iea23f5edd60d5ac214afa89d051cd4f900564343
Reviewed-on: https://gerrit.libreoffice.org/18804Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 00a6992b
......@@ -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; }
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment