From: Robin Dunn Date: Sat, 25 Mar 2006 00:13:33 +0000 (+0000) Subject: more size_t --> unsigned int changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6802574779c4e8c1d806a16942326e4ce2eb44a3 more size_t --> unsigned int changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38356 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_notebook.i b/wxPython/src/_notebook.i index 26b9486eed..b87ca2a0ab 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 - size_t GetInternalBorder() const; - void SetInternalBorder(size_t internalBorder); + unsigned int GetInternalBorder() const; + void SetInternalBorder(unsigned int internalBorder); // returns true if we have wxCHB_TOP or wxCHB_BOTTOM style bool IsVertical() const; diff --git a/wxPython/src/_treectrl.i b/wxPython/src/_treectrl.i index 841df1aa77..d3f855b0d1 100644 --- a/wxPython/src/_treectrl.i +++ b/wxPython/src/_treectrl.i @@ -346,7 +346,7 @@ public: // get the total number of items in the control - size_t GetCount() const; + unsigned int GetCount() const; // indent is the number of pixels the children are indented relative to // the parents position. SetIndent() also redraws the control