summaryrefslogtreecommitdiff
path: root/include/svx/graphctl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/graphctl.hxx')
-rw-r--r--include/svx/graphctl.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/svx/graphctl.hxx b/include/svx/graphctl.hxx
index aff192e19e71..77fb49484a0e 100644
--- a/include/svx/graphctl.hxx
+++ b/include/svx/graphctl.hxx
@@ -39,10 +39,10 @@ class SVX_DLLPUBLIC GraphCtrl : public Control
Graphic aGraphic;
Idle aUpdateIdle;
- Link aMousePosLink;
- Link aGraphSizeLink;
- Link aMarkObjLink;
- Link aUpdateLink;
+ Link<> aMousePosLink;
+ Link<> aGraphSizeLink;
+ Link<> aMarkObjLink;
+ Link<> aUpdateLink;
MapMode aMap100;
Size aGraphSize;
Point aMousePos;
@@ -107,17 +107,17 @@ public:
SdrObject* GetSelectedSdrObject() const;
bool IsChanged() const { return bSdrMode && pModel->IsChanged(); }
- void SetMousePosLink( const Link& rLink ) { aMousePosLink = rLink; }
- const Link& GetMousePosLink() const { return aMousePosLink; }
+ void SetMousePosLink( const Link<>& rLink ) { aMousePosLink = rLink; }
+ const Link<>& GetMousePosLink() const { return aMousePosLink; }
- void SetGraphSizeLink( const Link& rLink ) { aGraphSizeLink = rLink; }
- const Link& GetGraphSizeLink() const { return aGraphSizeLink; }
+ void SetGraphSizeLink( const Link<>& rLink ) { aGraphSizeLink = rLink; }
+ const Link<>& GetGraphSizeLink() const { return aGraphSizeLink; }
- void SetMarkObjLink( const Link& rLink ) { aMarkObjLink = rLink; }
- const Link& GetMarkObjLink() const { return aMarkObjLink; }
+ void SetMarkObjLink( const Link<>& rLink ) { aMarkObjLink = rLink; }
+ const Link<>& GetMarkObjLink() const { return aMarkObjLink; }
- void SetUpdateLink( const Link& rLink ) { aUpdateLink = rLink; }
- const Link& GetUpdateLink() const { return aUpdateLink; }
+ void SetUpdateLink( const Link<>& rLink ) { aUpdateLink = rLink; }
+ const Link<>& GetUpdateLink() const { return aUpdateLink; }
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE;
};