removed 'unsigned' from 'unsigned int' so epydoc doesn't get ocnfused

over the two tokens in the type name


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-18 21:25:33 +00:00
parent 894699b60e
commit 9745cf4d6c
2 changed files with 11 additions and 11 deletions

View File

@@ -11,7 +11,7 @@
/////////////////////////////////////////////////////////////////////////////
%define DOCSTRING
"ComboCtrl class that can have any type ofconst wxBitmap& bitmap, popup widget, and also an
"ComboCtrl class that can have any type of popup widget, and also an
owner-drawn combobox control."
%enddef
@@ -1100,7 +1100,7 @@ if not None. The return value is the index of the newly added item.", "");
DocDeclStr(
virtual wxBitmap , GetItemBitmap(unsigned int n) const,
virtual wxBitmap , GetItemBitmap(/*unsigned*/ int n) const,
"Returns the image of the item with the given index.", "");
@@ -1109,7 +1109,7 @@ if not None. The return value is the index of the newly added item.", "");
"Insert an item into the control before the item at the ``pos`` index,
optionally associating some data object with the item.", "");
int Insert(const wxString& item, const wxBitmap& bitmap,
unsigned int pos, PyObject* clientData=NULL) {
/*unsigned*/ int pos, PyObject* clientData=NULL) {
if (clientData) {
wxPyClientData* data = new wxPyClientData(clientData);
return self->Insert(item, bitmap, pos, data);
@@ -1120,7 +1120,7 @@ optionally associating some data object with the item.", "");
DocDeclStr(
virtual void , SetItemBitmap(unsigned int n, const wxBitmap& bitmap),
virtual void , SetItemBitmap(/*unsigned*/ int n, const wxBitmap& bitmap),
"Sets the image for the given item.", "");