summaryrefslogtreecommitdiffstats
path: root/include/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-14 16:02:42 +0200
committerNoel Grandin <noel@peralex.com>2015-08-17 09:59:59 +0200
commitf6dd3ca86263f6e350e9e5fcd62387e686e239da (patch)
treea5fb4d4b3f20182cbedde7bd7b425a2394c292a1 /include/svtools
parentmaDoubleClickHdl is unused (diff)
downloadcore-f6dd3ca86263f6e350e9e5fcd62387e686e239da.tar.gz
core-f6dd3ca86263f6e350e9e5fcd62387e686e239da.zip
make Link<> typed
Change-Id: I14bac096b3060ecc5b80319643390dc724157feb
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/calendar.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svtools/calendar.hxx b/include/svtools/calendar.hxx
index 8fc0e3b0efa6..e4144f54e0d1 100644
--- a/include/svtools/calendar.hxx
+++ b/include/svtools/calendar.hxx
@@ -216,9 +216,9 @@ private:
mbSelLeft:1,
mbAllSel:1,
mbDropPos:1;
- Link<> maSelectHdl;
- Timer maDragScrollTimer;
- sal_uInt16 mnDragScrollHitTest;
+ Link<Calendar*,void> maSelectHdl;
+ Timer maDragScrollTimer;
+ sal_uInt16 mnDragScrollHitTest;
using Control::ImplInitSettings;
using Window::ImplInit;
@@ -299,7 +299,7 @@ public:
Size CalcWindowSizePixel( long nCalcMonthPerLine = 1,
long nCalcLines = 1 ) const;
- void SetSelectHdl( const Link<>& rLink ) { maSelectHdl = rLink; }
+ void SetSelectHdl( const Link<Calendar*,void>& rLink ) { maSelectHdl = rLink; }
};
@@ -358,7 +358,7 @@ private:
bool mbNone;
Link<> maSelectHdl;
- DECL_DLLPRIVATE_LINK( ImplSelectHdl, Calendar* );
+ DECL_DLLPRIVATE_LINK_TYPED( ImplSelectHdl, Calendar*, void );
DECL_DLLPRIVATE_LINK( ImplClickHdl, PushButton* );
DECL_DLLPRIVATE_LINK( ImplPopupModeEndHdl, void* );