[Libreoffice-commits] core.git: sc/source

Noel Grandin noelgrandin at gmail.com
Wed Sep 23 06:08:41 PDT 2015


 sc/source/ui/inc/funcpage.hxx |   28 ++++++++++++----------------
 1 file changed, 12 insertions(+), 16 deletions(-)

New commits:
commit 5d5465057292676e5b0ce213b7172ce0b576d32e
Author: Noel Grandin <noelgrandin at gmail.com>
Date:   Wed Sep 23 10:20:19 2015 +0200

    remove unused Link<> field
    
    Change-Id: Iea23f5edd60d5ac214afa89d051cd4f900564343
    Reviewed-on: https://gerrit.libreoffice.org/18804
    Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
    Tested-by: Noel Grandin <noelgrandin at gmail.com>

diff --git a/sc/source/ui/inc/funcpage.hxx b/sc/source/ui/inc/funcpage.hxx
index 1e99143..fcf2638 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; }
 
 };
 


More information about the Libreoffice-commits mailing list