Reverted mistaken check-in

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39199 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-05-18 01:52:55 +00:00
parent f460c29d59
commit 152e88789d
3 changed files with 16 additions and 21 deletions

View File

@@ -516,9 +516,9 @@ void MyFrame::InitWithIconItems(bool withText, bool sameIcon)
m_listCtrl->SetImageList(m_imageListNormal, wxIMAGE_LIST_NORMAL);
m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL);
for ( int i = 0; i < NUM_ICONS*20; i++ )
for ( int i = 0; i < NUM_ICONS; i++ )
{
int image = i % (NUM_ICONS);
int image = sameIcon ? 0 : i;
if ( withText )
{