summaryrefslogtreecommitdiff
path: root/include/svx/svdhdl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/svdhdl.hxx')
-rw-r--r--include/svx/svdhdl.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdhdl.hxx b/include/svx/svdhdl.hxx
index 22a55ed40e02..ce74428e219b 100644
--- a/include/svx/svdhdl.hxx
+++ b/include/svx/svdhdl.hxx
@@ -258,7 +258,7 @@ private:
Color aMarkerColor;
// callback link when value changed
- Link aColorChangeHdl;
+ Link<> aColorChangeHdl;
// use luminance values only
bool bUseLuminance : 1;
@@ -283,8 +283,8 @@ public:
const Size& GetSize() const { return aMarkerSize; }
void SetSize(const Size& rNew);
- void SetColorChangeHdl(const Link& rLink) { aColorChangeHdl = rLink; }
- const Link& GetColorChangeHdl() const { return aColorChangeHdl; }
+ void SetColorChangeHdl(const Link<>& rLink) { aColorChangeHdl = rLink; }
+ const Link<>& GetColorChangeHdl() const { return aColorChangeHdl; }
};