]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dnd.cpp
more IRIX support
[wxWidgets.git] / src / gtk / dnd.cpp
index e8e4232a2a81fc456350d614a5345ef69bec9266..25b6eb46f64c5b1b2958ea56337387bccf693d13 100644 (file)
@@ -359,7 +359,7 @@ wxDragResult wxDropTarget::OnDragOver( wxCoord WXUNUSED(x),
 
     // disable the debug message from GetMatchingPair() - there are too many
     // of them otherwise
-#if 0 //def __WXDEBUG__
+#ifdef __WXDEBUG__
     wxLogNull noLog;
 #endif // Debug
 
@@ -763,6 +763,11 @@ wxDragResult wxDropSource::DoDragDrop( bool allowMove )
         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