Use correct direction in wxDataObject::IsSupported() in wxOSX dnd code.
Before calling wxDataObject::SetData() we must check whether the object supports this format using IsSupported(Set) instead of just IsSupported() which does the test in the "Get" direction. Closes #13615. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69677 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -79,7 +79,7 @@ bool wxDropTarget::CurrentDragHasSupportedFormat()
|
|||||||
for (size_t i = 0; !supported && i < formatcount; i++)
|
for (size_t i = 0; !supported && i < formatcount; i++)
|
||||||
{
|
{
|
||||||
wxDataFormat format = array[i];
|
wxDataFormat format = array[i];
|
||||||
if ( m_dataObject->IsSupported( format ) )
|
if ( m_dataObject->IsSupported( format, wxDataObject::Set ) )
|
||||||
{
|
{
|
||||||
supported = true;
|
supported = true;
|
||||||
break;
|
break;
|
||||||
@@ -119,7 +119,7 @@ bool wxDropTarget::GetData()
|
|||||||
for (size_t i = 0; !transferred && i < formatcount; i++)
|
for (size_t i = 0; !transferred && i < formatcount; i++)
|
||||||
{
|
{
|
||||||
wxDataFormat format = array[i];
|
wxDataFormat format = array[i];
|
||||||
if ( m_dataObject->IsSupported( format ) )
|
if ( m_dataObject->IsSupported( format, wxDataObject::Set ) )
|
||||||
{
|
{
|
||||||
int size = data->GetDataSize( format );
|
int size = data->GetDataSize( format );
|
||||||
transferred = true;
|
transferred = true;
|
||||||
|
Reference in New Issue
Block a user