From eb63709c2bc678d137167697004209a949fa7493 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 9 May 2015 21:29:29 +0200 Subject: Replace IMPL_STATIC_LINK[_TYPED] with more useful variants Change-Id: I356c56f5025b1cef4861bb6208ef4f0b04ddf605 --- sc/source/ui/navipi/content.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc/source/ui/navipi') 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; } -- cgit