summaryrefslogtreecommitdiff
path: root/sw/source/uibase/wrtsh
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-09-23 14:40:09 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-09-23 13:11:37 +0000
commit98680db45f51296f536b9f9889f53172fa50ee8f (patch)
tree3087e508b27298c55a23daece2830a708909c22d /sw/source/uibase/wrtsh
parenta5eaa6be75db0a9e84442fdbee69cf830b17ee85 (diff)
convert Link<> to typed
Change-Id: I6a4fade1688dfce9aec1530da51ea874cddfcbc0 Reviewed-on: https://gerrit.libreoffice.org/18812 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/source/uibase/wrtsh')
-rw-r--r--sw/source/uibase/wrtsh/select.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/wrtsh/select.cxx b/sw/source/uibase/wrtsh/select.cxx
index d530b552de12..74617336f80c 100644
--- a/sw/source/uibase/wrtsh/select.cxx
+++ b/sw/source/uibase/wrtsh/select.cxx
@@ -783,7 +783,7 @@ long SwWrtShell::BeginDrag(const Point * /*pPt*/, bool )
long SwWrtShell::DefaultDrag(const Point *, bool )
{
if( IsSelTableCells() )
- m_aSelTableLink.Call(this);
+ m_aSelTableLink.Call(*this);
return 1;
}
@@ -795,7 +795,7 @@ long SwWrtShell::DefaultEndDrag(const Point * /*pPt*/, bool )
LeaveExtSel();
if( IsSelTableCells() )
- m_aSelTableLink.Call(this);
+ m_aSelTableLink.Call(*this);
EndSelect();
return 1;
}