summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-16 11:48:03 +0200
committerNoel Grandin <noel@peralex.com>2015-09-17 08:19:32 +0200
commit81bec2e5535aeef7d6ae76f92124537d528f5c23 (patch)
tree121866ab62bb6b8286b078707098f16076389644 /include/editeng
parentc784b1a339ab59b7cf5caacd10be5945ec3e0f9f (diff)
convert Link<> to typed
Change-Id: I87d4697fe032e3095406becdda026447edd1d68a
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/editeng.hxx4
-rw-r--r--include/editeng/outliner.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx
index 0e0c4becaaf6..bb4444b2bf1a 100644
--- a/include/editeng/editeng.hxx
+++ b/include/editeng/editeng.hxx
@@ -343,8 +343,8 @@ public:
void SetModified();
bool IsModified() const;
- void SetModifyHdl( const Link<>& rLink );
- Link<> GetModifyHdl() const;
+ void SetModifyHdl( const Link<LinkParamNone*,void>& rLink );
+ Link<LinkParamNone*,void> GetModifyHdl() const;
bool IsInSelectionMode() const;
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 18d01e354452..78fd2dec88fa 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -775,8 +775,8 @@ public:
void SetPaintFirstLineHdl(const Link<PaintFirstLineInfo*,void>& rLink) { maPaintFirstLineHdl = rLink; }
- void SetModifyHdl( const Link<>& rLink );
- Link<> GetModifyHdl() const;
+ void SetModifyHdl( const Link<LinkParamNone*,void>& rLink );
+ Link<LinkParamNone*,void> GetModifyHdl() const;
void SetNotifyHdl( const Link<>& rLink );