X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/004fd0c8834ca526d335a9294322d9def17ef8a9..1be06faf7318abf88a35b299b90ceb2a49c0353b:/src/os2/dnd.cpp diff --git a/src/os2/dnd.cpp b/src/os2/dnd.cpp index c37a27db55..f8ed534d5d 100644 --- a/src/os2/dnd.cpp +++ b/src/os2/dnd.cpp @@ -14,6 +14,7 @@ #endif #define INCL_PM +#define INCL_DOS #include #include "wx/window.h" #include "wx/app.h" @@ -72,15 +73,6 @@ bool wxDropTarget::OnDrop( return FALSE; }; -bool wxDropTarget::OnData( - wxCoord x -, wxCoord y -) -{ - //TODO: - return FALSE; -}; - wxDragResult wxDropTarget::OnData( wxCoord x , wxCoord y @@ -105,42 +97,6 @@ bool wxDropTarget::IsAcceptable( return FALSE; }; -// ---------------------------------------------------------------------------- -// wxTextDropTarget -// ---------------------------------------------------------------------------- - -wxTextDropTarget::~wxTextDropTarget() -{ - // TODO: -} - -bool wxTextDropTarget::OnData( - wxCoord x -, wxCoord y -) -{ - // TODO: - return FALSE; -}; - -// ---------------------------------------------------------------------------- -// wxFileDropTarget -// ---------------------------------------------------------------------------- - -wxFileDropTarget::~wxFileDropTarget() -{ - // TODO: -} - -bool wxFileDropTarget::OnData( - wxCoord x -, wxCoord y -) -{ - // TODO: - return FALSE; -}; - //------------------------------------------------------------------------- // wxDropSource //-------------------------------------------------------------------------