]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dnd/dnd.cpp
fixed wxBITMAP for Motif
[wxWidgets.git] / samples / dnd / dnd.cpp
index 2ba7814f1faacd55ac0f5f05138f3386334bc407..0b26e485d87ddba1c55d05254cce19255fc9e160 100644 (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)