]> git.saurik.com Git - wxWidgets.git/commitdiff
Warning fix.
authorMattia Barbon <mbarbon@cpan.org>
Fri, 25 Apr 2003 20:24:35 +0000 (20:24 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Fri, 25 Apr 2003 20:24:35 +0000 (20:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20347 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/stc/PlatWX.cpp
contrib/src/xrc/xh_chckl.cpp
src/stc/PlatWX.cpp
src/xrc/xh_chckl.cpp

index 80f8f795ce95279d8ebf75ffaca32a66a3546f8d..ec41de273331d17a729f4bf07f449eb00325bfa8 100644 (file)
@@ -1009,7 +1009,7 @@ void ListBoxImpl::RegisterImage(int type, const char *xpm_data) {
 
     // do we need to extend the mapping array?
     wxArrayInt& itm = *imgTypeMap;
-    if ( itm.GetCount() < type+1)
+    if ( itm.GetCount() < (size_t)type+1)
         itm.Add(-1, type - itm.GetCount() + 1);
 
     // Add an item that maps type to the image index
index bac03e28237a72b49837d5b362a42138c9c7bd58..e68540722dac06ece9a3b2aa52f65f48d4bf8b8b 100644 (file)
@@ -107,4 +107,4 @@ bool wxCheckListXmlHandler::CanHandle(wxXmlNode *node)
            (m_insideBox && node->GetName() == wxT("item")));
 }
 
-#endif
\ No newline at end of file
+#endif
index 80f8f795ce95279d8ebf75ffaca32a66a3546f8d..ec41de273331d17a729f4bf07f449eb00325bfa8 100644 (file)
@@ -1009,7 +1009,7 @@ void ListBoxImpl::RegisterImage(int type, const char *xpm_data) {
 
     // do we need to extend the mapping array?
     wxArrayInt& itm = *imgTypeMap;
-    if ( itm.GetCount() < type+1)
+    if ( itm.GetCount() < (size_t)type+1)
         itm.Add(-1, type - itm.GetCount() + 1);
 
     // Add an item that maps type to the image index
index bac03e28237a72b49837d5b362a42138c9c7bd58..e68540722dac06ece9a3b2aa52f65f48d4bf8b8b 100644 (file)
@@ -107,4 +107,4 @@ bool wxCheckListXmlHandler::CanHandle(wxXmlNode *node)
            (m_insideBox && node->GetName() == wxT("item")));
 }
 
-#endif
\ No newline at end of file
+#endif