]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dnd.cpp
Added PushEventHandler, Pop...
[wxWidgets.git] / src / gtk / dnd.cpp
index ce49947151a69444abbfdd9eaf2064091e5e64c9..72b29d4bf5a438112edf600d22f0c3018a01415a 100644 (file)
@@ -208,7 +208,7 @@ wxDropSource::DragResult wxDropSource::DoDragDrop( bool WXUNUSED(bAllowMove) )
   if (gdk_dnd.dnd_grabbed) return None;
   if (gdk_dnd.drag_really) return None;
   
-  wxASSERT_MSG( data, "wxDragSource: no data" );
+  wxASSERT_MSG( m_data, "wxDragSource: no data" );
   
   if (!m_data) return None;
   if (m_data->GetDataSize() == 0) return None;
@@ -263,6 +263,8 @@ wxDropSource::DragResult wxDropSource::DoDragDrop( bool WXUNUSED(bAllowMove) )
   
   UnregisterWindow();
   
+  g_blockEventsOnDrag = FALSE;
+  
   return m_retValue;
 };