X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3538f4df99bc96e73fada5e671681033354dbec0..f0d5e7a25aef93d3a907d005c572bc8cca4f41a1:/src/mac/dnd.cpp

diff --git a/src/mac/dnd.cpp b/src/mac/dnd.cpp
index 7ab73a19d1..5369a1cf34 100644
--- a/src/mac/dnd.cpp
+++ b/src/mac/dnd.cpp
@@ -259,7 +259,7 @@ wxDropSource::~wxDropSource()
 }
 
 
-wxDragResult wxDropSource::DoDragDrop( bool allowMove )
+wxDragResult wxDropSource::DoDragDrop(int WXUNUSED(flags))
 {
     wxASSERT_MSG( m_data, wxT("Drop source: no data") );
 
@@ -490,8 +490,9 @@ pascal OSErr wxMacWindowDragTrackingHandler(DragTrackingMessage theMessage, Wind
     return(noErr);
 }
 
-pascal OSErr wxMacWindowDragReceiveHandler(WindowPtr theWindow, void *handlerRefCon,
-DragReference theDrag)
+pascal OSErr wxMacWindowDragReceiveHandler(WindowPtr theWindow,
+                                           void *handlerRefCon,
+                                           DragReference theDrag)
 { 
     MacTrackingGlobals* trackingGlobals = (MacTrackingGlobals*) handlerRefCon;
     if ( trackingGlobals->m_currentTarget )