]>
git.saurik.com Git - wxWidgets.git/blob - src/common/dndcmn.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/dndcmn.cpp
3 // Author: Robert Roebling
7 // Copyright: (c) wxWidgets Team
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
15 #include "wx/wxprec.h"
23 #if wxUSE_DRAG_AND_DROP
25 bool wxIsDragResultOk(wxDragResult res
)
27 return res
== wxDragCopy
|| res
== wxDragMove
|| res
== wxDragLink
;