Fix "pos" argument description in wxTreeCtrl::InsertItem() documentation.
Closes #14640. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -691,8 +691,8 @@ public:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
Inserts an item before one identified
|
Inserts an item before one identified
|
||||||
by its position (@a before). @a before must be less than the number of
|
by its position (@a pos). @a pos must be less than or equal to
|
||||||
children.
|
the number of children.
|
||||||
|
|
||||||
The @a image and @a selImage parameters are an index within the normal
|
The @a image and @a selImage parameters are an index within the normal
|
||||||
image list specifying the image to use for unselected and selected
|
image list specifying the image to use for unselected and selected
|
||||||
@@ -700,7 +700,7 @@ public:
|
|||||||
image is used for both selected and unselected items.
|
image is used for both selected and unselected items.
|
||||||
*/
|
*/
|
||||||
wxTreeItemId InsertItem(const wxTreeItemId& parent,
|
wxTreeItemId InsertItem(const wxTreeItemId& parent,
|
||||||
size_t before,
|
size_t pos,
|
||||||
const wxString& text,
|
const wxString& text,
|
||||||
int image = -1,
|
int image = -1,
|
||||||
int selImage = -1,
|
int selImage = -1,
|
||||||
|
Reference in New Issue
Block a user