Minor changes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4702 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-11-26 17:41:20 +00:00
parent b16088bf11
commit 72a7edf007
10 changed files with 94 additions and 23 deletions

View File

@@ -542,8 +542,9 @@ public:
}
// override base class (pure) virtuals
virtual void OnEnter()
{ m_frame->SetStatusText("Mouse entered the frame"); }
virtual wxDragResult OnEnter(wxCoord x, wxCoord y, wxDragResult def)
{ m_frame->SetStatusText("Mouse entered the frame");
return OnDragOver(x, y, def); }
virtual void OnLeave()
{ m_frame->SetStatusText("Mouse left the frame"); }
virtual wxDragResult OnData(wxCoord x, wxCoord y, wxDragResult def)