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:
@@ -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 )
|
||||
{
|
||||
|
@@ -679,10 +679,6 @@ void MyFrame::OnToolLeftClick(wxCommandEvent& event)
|
||||
{
|
||||
DoDeletePrint();
|
||||
}
|
||||
if (event.GetId() == IDM_TOOLBAR_OTHER_1)
|
||||
{
|
||||
m_tbar->Realize();
|
||||
}
|
||||
}
|
||||
|
||||
void MyFrame::OnToolRightClick(wxCommandEvent& event)
|
||||
|
Reference in New Issue
Block a user