// disable the debug message from GetMatchingPair() - there are too many
// of them otherwise
-#if 0 //def __WXDEBUG__
+#ifdef __WXDEBUG__
wxLogNull noLog;
#endif // Debug
PrepareIcon( 0, 0, context );
while (m_waiting) gtk_main_iteration();;
+
+ if (context->action == GDK_ACTION_COPY)
+ return m_retValue = wxDragCopy;
+ if (context->action == GDK_ACTION_MOVE)
+ return m_retValue = wxDragMove;
}
#if wxUSE_THREADS