]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/arrimpl.cpp
pch-less compilation fix for r55285
[wxWidgets.git] / include / wx / arrimpl.cpp
index e2f4dee76b5c43826689ab056410fb061b8832ae..bde773663932a9d36ed586bd585e32098db41429 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     16.10.97
 // RCS-ID:      $Id$
 // Copyright:   (c) 1997 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// Licence:     wxWidgets license
+// Licence:     wxWindows license
 ///////////////////////////////////////////////////////////////////////////////
 
 /*****************************************************************************
@@ -98,7 +98,7 @@ int name::Index(const T& Item, bool bFromEnd) const                           \
       size_t ui = size() - 1;                                                 \
       do {                                                                    \
         if ( (T*)base_array::operator[](ui) == &Item )                        \
-          return ui;                                                          \
+          return wx_static_cast(int, ui);                                     \
         ui--;                                                                 \
       }                                                                       \
       while ( ui != 0 );                                                      \
@@ -107,7 +107,7 @@ int name::Index(const T& Item, bool bFromEnd) const                           \
   else {                                                                      \
     for( size_t ui = 0; ui < size(); ui++ ) {                                 \
       if( (T*)base_array::operator[](ui) == &Item )                           \
-        return ui;                                                            \
+        return wx_static_cast(int, ui);                                       \
     }                                                                         \
   }                                                                           \
                                                                               \