From 4e4fffec1990d6a40e7c7f2e650dee551eb08cf9 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 3 May 2012 23:30:27 +0000 Subject: [PATCH] fix incorrect default values git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71347 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/dnd.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/interface/wx/dnd.h b/interface/wx/dnd.h index 44bfbc2944..20a9bb82a9 100644 --- a/interface/wx/dnd.h +++ b/interface/wx/dnd.h @@ -214,9 +214,9 @@ public: The icon or cursor used for feedback when operation can't be done. */ wxDropSource(wxWindow* win = NULL, - const wxCursor& iconCopy = wxNullIcon, - const wxCursor& iconMove = wxNullIcon, - const wxCursor& iconNone = wxNullIcon); + const wxCursor& iconCopy = wxNullCursor, + const wxCursor& iconMove = wxNullCursor, + const wxCursor& iconNone = wxNullCursor); /** The constructor taking a wxDataObject. @@ -240,9 +240,9 @@ public: The icon or cursor used for feedback when operation can't be done. */ wxDropSource(wxDataObject& data, wxWindow* win = NULL, - const wxCursor& iconCopy = wxNullIcon, - const wxCursor& iconMove = wxNullIcon, - const wxCursor& iconNone = wxNullIcon); + const wxCursor& iconCopy = wxNullCursor, + const wxCursor& iconMove = wxNullCursor, + const wxCursor& iconNone = wxNullCursor); /** This constructor requires that you must call SetData() later. @@ -262,9 +262,9 @@ public: The icon or cursor used for feedback when operation can't be done. */ wxDropSource(wxWindow* win = NULL, - const wxIcon& iconCopy = wxNullCursor, - const wxIcon& iconMove = wxNullCursor, - const wxIcon& iconNone = wxNullCursor); + const wxIcon& iconCopy = wxNullIcon, + const wxIcon& iconMove = wxNullIcon, + const wxIcon& iconNone = wxNullIcon); /** The constructor taking a wxDataObject. @@ -286,9 +286,9 @@ public: The icon or cursor used for feedback when operation can't be done. */ wxDropSource(wxDataObject& data, wxWindow* win = NULL, - const wxIcon& iconCopy = wxNullCursor, - const wxIcon& iconMove = wxNullCursor, - const wxIcon& iconNone = wxNullCursor); + const wxIcon& iconCopy = wxNullIcon, + const wxIcon& iconMove = wxNullIcon, + const wxIcon& iconNone = wxNullIcon); /** Starts the drag-and-drop operation which will terminate when the user -- 2.47.2