From 31a92c1529260c42069563cb3661527756ce80b6 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 9 May 2015 21:30:04 +0200 Subject: Replace IMPL_STATIC_LINK[_TYPED] with more useful variants Change-Id: Ic740510b891194ebef6a8fe35bd56f2f1d785c3d --- svx/source/tbxctrls/colrctrl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svx/source/tbxctrls/colrctrl.cxx') diff --git a/svx/source/tbxctrls/colrctrl.cxx b/svx/source/tbxctrls/colrctrl.cxx index 9302b7a6f93a..0796f53e7b0d 100644 --- a/svx/source/tbxctrls/colrctrl.cxx +++ b/svx/source/tbxctrls/colrctrl.cxx @@ -172,11 +172,11 @@ void SvxColorValueSet_docking::DoDrag() } } -IMPL_STATIC_LINK(SvxColorValueSet_docking, ExecDragHdl, void*, EMPTYARG) +IMPL_LINK_NOARG(SvxColorValueSet_docking, ExecDragHdl) { // Als Link, damit asynchron ohne ImpMouseMoveMsg auf dem Stack auch die // Farbleiste geloescht werden darf - pThis->DoDrag(); + DoDrag(); return 0; } -- cgit