summaryrefslogtreecommitdiff
path: root/svx/source/dialog/contwnd.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/contwnd.hxx')
-rw-r--r--svx/source/dialog/contwnd.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/dialog/contwnd.hxx b/svx/source/dialog/contwnd.hxx
index 6937bf9fd8ab..675ffd371939 100644
--- a/svx/source/dialog/contwnd.hxx
+++ b/svx/source/dialog/contwnd.hxx
@@ -28,9 +28,9 @@ class ContourWindow : public GraphCtrl
tools::PolyPolygon aPolyPoly;
Color aPipetteColor;
Rectangle aWorkRect;
- Link aPipetteLink;
- Link aPipetteClickLink;
- Link aWorkplaceClickLink;
+ Link<> aPipetteLink;
+ Link<> aPipetteClickLink;
+ Link<> aWorkplaceClickLink;
bool bPipetteMode;
bool bWorkplaceMode;
bool bClickValid;
@@ -65,10 +65,10 @@ public:
bool IsWorkplaceMode() const { return bWorkplaceMode; }
const Rectangle& GetWorkRect() const { return aWorkRect; }
- void SetPipetteHdl( const Link& rLink ) { aPipetteLink = rLink; }
- void SetPipetteClickHdl( const Link& rLink ) { aPipetteClickLink = rLink; }
+ void SetPipetteHdl( const Link<>& rLink ) { aPipetteLink = rLink; }
+ void SetPipetteClickHdl( const Link<>& rLink ) { aPipetteClickLink = rLink; }
- void SetWorkplaceClickHdl( const Link& rLink ) { aWorkplaceClickLink = rLink; }
+ void SetWorkplaceClickHdl( const Link<>& rLink ) { aWorkplaceClickLink = rLink; }
};