From: Vadim Zeitlin Date: Mon, 5 Nov 2007 22:47:05 +0000 (+0000) Subject: undid an overeager WXUNUSED() which broke non-Mac compilation X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/aca5c6971f8dd1b64768de96c7854fd4f48ff23e?ds=inline undid an overeager WXUNUSED() which broke non-Mac compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49664 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/dragimgg.cpp b/src/generic/dragimgg.cpp index 56ee35e91d..6cf4a33925 100644 --- a/src/generic/dragimgg.cpp +++ b/src/generic/dragimgg.cpp @@ -451,7 +451,7 @@ bool wxGenericDragImage::Hide() } // More efficient: erase and redraw simultaneously if possible -bool wxGenericDragImage::RedrawImage(const wxPoint& WXUNUSED(oldPos), +bool wxGenericDragImage::RedrawImage(const wxPoint& oldPos, const wxPoint& newPos, bool eraseOld, bool drawNew) { @@ -459,6 +459,8 @@ bool wxGenericDragImage::RedrawImage(const wxPoint& WXUNUSED(oldPos), return false; #ifdef wxHAS_NATIVE_OVERLAY + wxUnusedVar(oldPos); + wxDCOverlay dcoverlay( m_overlay, (wxWindowDC*) m_windowDC ) ; if ( eraseOld ) dcoverlay.Clear() ;