summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-10-10 16:11:14 +0100
committerAndras Timar <andras.timar@collabora.com>2020-03-03 14:31:48 +0100
commit147849c328e7fcef65b5e4ea17a473d2bab3bdb1 (patch)
treedab4949155cf1736837f2bd1e874f5f5d84f5562 /sw/inc
parent3fe9dfca2d44d9e41ee329883f199359c673f382 (diff)
SwCursorShell argument of AttrChangedNotify is unused
Change-Id: I1fde665dcb77d29cad7f6a5c12e82c1822cff022 Reviewed-on: https://gerrit.libreoffice.org/80621 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89883 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/crsrsh.hxx6
-rw-r--r--sw/inc/view.hxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx
index 7add73be4c23..050648beb901 100644
--- a/sw/inc/crsrsh.hxx
+++ b/sw/inc/crsrsh.hxx
@@ -175,7 +175,7 @@ private:
Link<const SwFlyFrameFormat*,void> m_aFlyMacroLnk; /**< Link will be called, if the Cursor is set
into a fly. A macro can then be called */
- Link<SwCursorShell*,void> m_aChgLnk; /**< link will be called by every attribute/
+ Link<LinkParamNone*,void> m_aChgLnk; /**< link will be called by every attribute/
format changes at cursor position.*/
Link<SwCursorShell&,void> m_aGrfArrivedLnk; ///< Link calls to UI if a graphic is arrived
@@ -486,8 +486,8 @@ public:
const Link<const SwFlyFrameFormat*,void>& GetFlyMacroLnk() const { return m_aFlyMacroLnk; }
// Methods returning/altering link for changes of attributes/formats.
- void SetChgLnk( const Link<SwCursorShell*,void> &rLnk ) { m_aChgLnk = rLnk; }
- const Link<SwCursorShell*,void>& GetChgLnk() const { return m_aChgLnk; }
+ void SetChgLnk( const Link<LinkParamNone*,void> &rLnk ) { m_aChgLnk = rLnk; }
+ const Link<LinkParamNone*,void>& GetChgLnk() const { return m_aChgLnk; }
// Methods returning/altering ling for "graphic completely loaded".
void SetGrfArrivedLnk( const Link<SwCursorShell&,void> &rLnk ) { m_aGrfArrivedLnk = rLnk; }
diff --git a/sw/inc/view.hxx b/sw/inc/view.hxx
index 94e2cc86e81e..f18ba61d0569 100644
--- a/sw/inc/view.hxx
+++ b/sw/inc/view.hxx
@@ -534,7 +534,7 @@ public:
void StateTabWin(SfxItemSet&);
// attributes have changed
- DECL_LINK( AttrChangedNotify, SwCursorShell*, void );
+ DECL_LINK( AttrChangedNotify, LinkParamNone*, void );
// form control has been activated
DECL_LINK( FormControlActivated, LinkParamNone*, void );