fix incorrect default values
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71347 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -214,9 +214,9 @@ public:
|
|||||||
The icon or cursor used for feedback when operation can't be done.
|
The icon or cursor used for feedback when operation can't be done.
|
||||||
*/
|
*/
|
||||||
wxDropSource(wxWindow* win = NULL,
|
wxDropSource(wxWindow* win = NULL,
|
||||||
const wxCursor& iconCopy = wxNullIcon,
|
const wxCursor& iconCopy = wxNullCursor,
|
||||||
const wxCursor& iconMove = wxNullIcon,
|
const wxCursor& iconMove = wxNullCursor,
|
||||||
const wxCursor& iconNone = wxNullIcon);
|
const wxCursor& iconNone = wxNullCursor);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The constructor taking a wxDataObject.
|
The constructor taking a wxDataObject.
|
||||||
@@ -240,9 +240,9 @@ public:
|
|||||||
The icon or cursor used for feedback when operation can't be done.
|
The icon or cursor used for feedback when operation can't be done.
|
||||||
*/
|
*/
|
||||||
wxDropSource(wxDataObject& data, wxWindow* win = NULL,
|
wxDropSource(wxDataObject& data, wxWindow* win = NULL,
|
||||||
const wxCursor& iconCopy = wxNullIcon,
|
const wxCursor& iconCopy = wxNullCursor,
|
||||||
const wxCursor& iconMove = wxNullIcon,
|
const wxCursor& iconMove = wxNullCursor,
|
||||||
const wxCursor& iconNone = wxNullIcon);
|
const wxCursor& iconNone = wxNullCursor);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This constructor requires that you must call SetData() later.
|
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.
|
The icon or cursor used for feedback when operation can't be done.
|
||||||
*/
|
*/
|
||||||
wxDropSource(wxWindow* win = NULL,
|
wxDropSource(wxWindow* win = NULL,
|
||||||
const wxIcon& iconCopy = wxNullCursor,
|
const wxIcon& iconCopy = wxNullIcon,
|
||||||
const wxIcon& iconMove = wxNullCursor,
|
const wxIcon& iconMove = wxNullIcon,
|
||||||
const wxIcon& iconNone = wxNullCursor);
|
const wxIcon& iconNone = wxNullIcon);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The constructor taking a wxDataObject.
|
The constructor taking a wxDataObject.
|
||||||
@@ -286,9 +286,9 @@ public:
|
|||||||
The icon or cursor used for feedback when operation can't be done.
|
The icon or cursor used for feedback when operation can't be done.
|
||||||
*/
|
*/
|
||||||
wxDropSource(wxDataObject& data, wxWindow* win = NULL,
|
wxDropSource(wxDataObject& data, wxWindow* win = NULL,
|
||||||
const wxIcon& iconCopy = wxNullCursor,
|
const wxIcon& iconCopy = wxNullIcon,
|
||||||
const wxIcon& iconMove = wxNullCursor,
|
const wxIcon& iconMove = wxNullIcon,
|
||||||
const wxIcon& iconNone = wxNullCursor);
|
const wxIcon& iconNone = wxNullIcon);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Starts the drag-and-drop operation which will terminate when the user
|
Starts the drag-and-drop operation which will terminate when the user
|
||||||
|
Reference in New Issue
Block a user