fix signed/unsigned comparison warning
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -564,7 +564,7 @@ void BitmapComboBoxWidgetsPage::OnButtonAddSeveralWithImages(wxCommandEvent& WXU
|
|||||||
{ "Black circle", 0x000000 },
|
{ "Black circle", 0x000000 },
|
||||||
};
|
};
|
||||||
|
|
||||||
for ( int i = 0; i < WXSIZEOF(s_entries); i++ )
|
for ( unsigned i = 0; i < WXSIZEOF(s_entries); i++ )
|
||||||
{
|
{
|
||||||
const TestEntry& e = s_entries[i];
|
const TestEntry& e = s_entries[i];
|
||||||
m_combobox->Append(e.text, CreateBitmap(wxColour(e.rgb)));
|
m_combobox->Append(e.text, CreateBitmap(wxColour(e.rgb)));
|
||||||
|
Reference in New Issue
Block a user