diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-09 21:29:34 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-10 11:25:44 +0200 |
commit | 65d999d2bc0ace788f0d3fc1abdfe1ce6ccd012a (patch) | |
tree | aa3435724fdaab1d59f009221df8c4e8c5450fe5 /sd/source/ui/dlg/sdtreelb.cxx | |
parent | eb63709c2bc678d137167697004209a949fa7493 (diff) |
Replace IMPL_STATIC_LINK[_TYPED] with more useful variants
Change-Id: Idb56c158704ca7642260b3565a92eae4389e4fdb
Diffstat (limited to 'sd/source/ui/dlg/sdtreelb.cxx')
-rw-r--r-- | sd/source/ui/dlg/sdtreelb.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx index 85c69e774373..12f323f30900 100644 --- a/sd/source/ui/dlg/sdtreelb.cxx +++ b/sd/source/ui/dlg/sdtreelb.cxx @@ -1371,11 +1371,11 @@ sal_Int8 SdPageObjsTLB::ExecuteDrop( const ExecuteDropEvent& rEvt ) /** * Handler for Dragging */ -IMPL_STATIC_LINK(SdPageObjsTLB, ExecDragHdl, void*, EMPTYARG) +IMPL_LINK_NOARG(SdPageObjsTLB, ExecDragHdl) { // as link, then it is allowed to asynchronous, without ImpMouseMoveMsg on // the stack, delete the Navigator - pThis->DoDrag(); + DoDrag(); return 0; } |