summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/funcpage.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/funcpage.hxx')
-rw-r--r--sc/source/ui/inc/funcpage.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/inc/funcpage.hxx b/sc/source/ui/inc/funcpage.hxx
index 49494c609133..1e99143dd811 100644
--- a/sc/source/ui/inc/funcpage.hxx
+++ b/sc/source/ui/inc/funcpage.hxx
@@ -52,8 +52,8 @@ class ScFuncPage : public TabPage
{
private:
- Link aDoubleClickLink;
- Link aSelectionLink;
+ Link<> aDoubleClickLink;
+ Link<> aSelectionLink;
FixedText aFtCategory;
ListBox aLbCategory;
FixedText aFtFunction;
@@ -85,11 +85,11 @@ public:
const ScFuncDesc* GetFuncDesc( sal_uInt16 nPos ) const;
OUString GetSelFunctionName() const;
- void SetDoubleClickHdl( const Link& rLink ) { aDoubleClickLink = rLink; }
- const Link& GetDoubleClickHdl() const { return aDoubleClickLink; }
+ 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; }
};