diff options
Diffstat (limited to 'svx/source/gallery2/galbrws2.cxx')
-rw-r--r-- | svx/source/gallery2/galbrws2.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/gallery2/galbrws2.cxx b/svx/source/gallery2/galbrws2.cxx index 325d8e540dff..42856a8f030d 100644 --- a/svx/source/gallery2/galbrws2.cxx +++ b/svx/source/gallery2/galbrws2.cxx @@ -476,8 +476,9 @@ bool GalleryBrowser2::StartDrag() return m_xHelper->StartDrag(); } -IMPL_LINK_NOARG(GalleryBrowser2, DragBeginHdl, weld::TreeView&, bool) +IMPL_LINK(GalleryBrowser2, DragBeginHdl, bool&, rUnsetDragIcon, bool) { + rUnsetDragIcon = false; return StartDrag(); } |