From: Robin Dunn Date: Wed, 15 Mar 2006 22:45:10 +0000 (+0000) Subject: some int --> size_t changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f8dda225b3fcb6ac8c0860b2e81dba37862adbed?ds=inline some int --> size_t changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38116 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_control.i b/wxPython/src/_control.i index 64326a0c32..a043e77552 100644 --- a/wxPython/src/_control.i +++ b/wxPython/src/_control.i @@ -206,7 +206,7 @@ than the number of items in the control.", ""); DocDeclStr( - virtual int , GetCount() const, + virtual size_t , GetCount() const, "Returns the number of items in the control.", ""); DocDeclStr( diff --git a/wxPython/src/_notebook.i b/wxPython/src/_notebook.i index b87ca2a0ab..26b9486eed 100644 --- a/wxPython/src/_notebook.i +++ b/wxPython/src/_notebook.i @@ -100,8 +100,8 @@ public: // get/set size of area between book control area and page area - unsigned int GetInternalBorder() const; - void SetInternalBorder(unsigned int internalBorder); + size_t GetInternalBorder() const; + void SetInternalBorder(size_t internalBorder); // returns true if we have wxCHB_TOP or wxCHB_BOTTOM style bool IsVertical() const; diff --git a/wxPython/src/_radio.i b/wxPython/src/_radio.i index 5d5b97c547..35aaa0f3b3 100644 --- a/wxPython/src/_radio.i +++ b/wxPython/src/_radio.i @@ -59,7 +59,7 @@ public: virtual bool SetStringSelection(const wxString& s); // string access - virtual int GetCount() const; + virtual size_t GetCount() const; virtual int FindString(const wxString& s) const; virtual wxString GetString(int n) const;