conversion warning gcc 3.3 mac
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25593 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2983,7 +2983,7 @@ wxString wxGridTableBase::GetColLabelValue( int col )
|
|||||||
unsigned int i, n;
|
unsigned int i, n;
|
||||||
for ( n = 1; ; n++ )
|
for ( n = 1; ; n++ )
|
||||||
{
|
{
|
||||||
s += (_T('A') + (wxChar)( col%26 ));
|
s += (wxChar) (_T('A') + (wxChar)( col%26 ));
|
||||||
col = col/26 - 1;
|
col = col/26 - 1;
|
||||||
if ( col < 0 ) break;
|
if ( col < 0 ) break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user