summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-17 16:54:38 +0200
committerNoel Grandin <noel@peralex.com>2015-09-18 08:46:12 +0200
commiteb76c8f62a578ddc67a6442e87ec81845e5a73d0 (patch)
treed027a213410bda6f4b758c44b885f4b3c0630d63 /sw/inc
parent8578168b6aa6ccd3d0fad494300766fce4b26dbc (diff)
convert Link<> to typed
Change-Id: Ia0e76911dba6e1e2fd5f01799121c8f4b4219aba
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/crsrsh.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx
index cf6d81805011..e38a6c1df693 100644
--- a/sw/inc/crsrsh.hxx
+++ b/sw/inc/crsrsh.hxx
@@ -170,7 +170,7 @@ private:
into a fly. A macro can then be called */
Link<SwCrsrShell*,void> m_aChgLnk; /**< link will be called by every attribute/
format changes at cursor position.*/
- Link<> m_aGrfArrivedLnk; ///< Link calls to UI if a graphic is arrived
+ Link<SwCrsrShell&,void> m_aGrfArrivedLnk; ///< Link calls to UI if a graphic is arrived
SwShellCrsr* m_pCurCrsr; ///< current cursor
SwShellCrsr* m_pCrsrStk; ///< stack for the cursor
@@ -489,8 +489,8 @@ public:
const Link<SwCrsrShell*,void>& GetChgLnk() const { return m_aChgLnk; }
// Methods returning/altering ling for "graphic completely loaded".
- void SetGrfArrivedLnk( const Link<> &rLnk ) { m_aGrfArrivedLnk = rLnk; }
- const Link<>& GetGrfArrivedLnk() const { return m_aGrfArrivedLnk; }
+ void SetGrfArrivedLnk( const Link<SwCrsrShell&,void> &rLnk ) { m_aGrfArrivedLnk = rLnk; }
+ const Link<SwCrsrShell&,void>& GetGrfArrivedLnk() const { return m_aGrfArrivedLnk; }
//Call ChgLink. When within an action calling will be delayed.
void CallChgLnk();