DP: Robert's mistake with incorrect var name corrected.

It even does not compile.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@491 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Denis Pershin 1998-08-09 19:42:11 +00:00
parent 376781f78e
commit f6d5397840
2 changed files with 2 additions and 2 deletions

View 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;

View 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;