]> git.saurik.com Git - wxWidgets.git/commitdiff
some int --> size_t changes
authorRobin Dunn <robin@alldunn.com>
Wed, 15 Mar 2006 22:45:10 +0000 (22:45 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 15 Mar 2006 22:45:10 +0000 (22:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38116 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_control.i
wxPython/src/_notebook.i
wxPython/src/_radio.i

index 64326a0c32662aa8852ec7367613c141e5f3c68d..a043e77552d246f812351977e3d239856d8470dc 100644 (file)
@@ -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(
index b87ca2a0ab36a3767df73cfbd36aa1f3adb78f5e..26b9486eed48014e19f95bb731cc78f4478892d5 100644 (file)
@@ -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;
index 5d5b97c547d439acd38776c4b4a25195d8c2146f..35aaa0f3b34d693ae2d68246b9fa146bf499e06d 100644 (file)
@@ -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;