X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6e711d5c093dcc758e3f1670caf845612ea9fa92..6dbb903bb9410e2a2a977ad349ba7b4b3b12ac78:/include/wx/dnd.h diff --git a/include/wx/dnd.h b/include/wx/dnd.h index 20d34cd6bc..61f7625876 100644 --- a/include/wx/dnd.h +++ b/include/wx/dnd.h @@ -34,12 +34,13 @@ enum wxDragResult wxDragNone, // drag target didn't accept the data wxDragCopy, // the data was successfully copied wxDragMove, // the data was successfully moved (MSW only) + wxDragLink, // operation is a drag-link wxDragCancel // the operation was cancelled by user (not an error) }; inline WXDLLEXPORT bool wxIsDragResultOk(wxDragResult res) { - return res == wxDragCopy || res == wxDragMove; + return res == wxDragCopy || res == wxDragMove || res == wxDragLink; } // ---------------------------------------------------------------------------- @@ -186,6 +187,8 @@ protected: #include "wx/msw/ole/droptgt.h" #elif defined(__WXMOTIF__) #include "wx/motif/dnd.h" +#elif defined(__WXX11__) + #include "wx/x11/dnd.h" #elif defined(__WXGTK__) #include "wx/gtk/dnd.h" #elif defined(__WXMAC__)