summaryrefslogtreecommitdiff
path: root/sc/source/ui/navipi
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-09 21:29:29 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-10 11:25:44 +0200
commiteb63709c2bc678d137167697004209a949fa7493 (patch)
tree2ce58db9f655861db0df20dce97e20b3ca5cc76a /sc/source/ui/navipi
parent39707f9448d65ba14e04fc9377f87086dab58e89 (diff)
Replace IMPL_STATIC_LINK[_TYPED] with more useful variants
Change-Id: I356c56f5025b1cef4861bb6208ef4f0b04ddf605
Diffstat (limited to 'sc/source/ui/navipi')
-rw-r--r--sc/source/ui/navipi/content.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/navipi/content.cxx b/sc/source/ui/navipi/content.cxx
index 4b8149cf555d..2e131c804bb4 100644
--- a/sc/source/ui/navipi/content.cxx
+++ b/sc/source/ui/navipi/content.cxx
@@ -1447,12 +1447,12 @@ void ScContentTree::DoDrag()
delete pDocLoader; // falls Dokument zum Draggen geladen wurde
}
-IMPL_STATIC_LINK(ScContentTree, ExecDragHdl, void*, EMPTYARG)
+IMPL_LINK_NOARG(ScContentTree, ExecDragHdl)
{
// als Link, damit asynchron ohne ImpMouseMoveMsg auf dem Stack auch der
// Navigator geloescht werden darf
- pThis->DoDrag();
+ DoDrag();
return 0;
}