X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..5444f3a9445fe30633aef827154ed57656273a35:/wxPython/src/_imaglist.i?ds=sidebyside diff --git a/wxPython/src/_imaglist.i b/wxPython/src/_imaglist.i index f436666cb8..87962cdbab 100644 --- a/wxPython/src/_imaglist.i +++ b/wxPython/src/_imaglist.i @@ -41,7 +41,7 @@ enum { // two bitmaps, or an icon. class wxImageList : public wxObject { public: - wxImageList(int width, int height, int mask=TRUE, int initialCount=1); + wxImageList(int width, int height, int mask=True, int initialCount=1); ~wxImageList(); int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap); @@ -56,12 +56,16 @@ public: #endif bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL, - const bool solidBackground = FALSE); + const bool solidBackground = False); int GetImageCount(); bool Remove(int index); bool RemoveAll(); - void GetSize(int index, int& OUTPUT, int& OUTPUT); + + DocDeclA( + void, GetSize(int index, int& OUTPUT, int& OUTPUT), + "GetSize() -> (width,height)"); + }; //---------------------------------------------------------------------------