Warning fixes for win64
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35921 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1324,10 +1324,12 @@ void wxFlexGridSizer::AdjustForFlexDirection()
|
||||
wxArrayInt& array = m_flexDirection == wxVERTICAL ? m_colWidths
|
||||
: m_rowHeights;
|
||||
|
||||
const int count = array.GetCount();
|
||||
const size_t count = array.GetCount();
|
||||
|
||||
// find the largest value in this array
|
||||
int n, largest = 0;
|
||||
size_t n;
|
||||
int largest = 0;
|
||||
|
||||
for ( n = 0; n < count; ++n )
|
||||
{
|
||||
if ( array[n] > largest )
|
||||
|
Reference in New Issue
Block a user