]>
git.saurik.com Git - wxWidgets.git/blob - src/common/dndcmn.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/dndcmn.cpp
3 // Author: Robert Roebling
6 // Copyright: (c) wxWidgets Team
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
14 #include "wx/wxprec.h"
22 #if wxUSE_DRAG_AND_DROP
24 bool wxIsDragResultOk(wxDragResult res
)
26 return res
== wxDragCopy
|| res
== wxDragMove
|| res
== wxDragLink
;