Correct the test for wxHAS_IMAGES_IN_RESOURCES in listctrl sample.
wxHAS_XXX symbols need to be checked with #ifdef, not #if. See #1614 (as this change was part of the patch submitted there, even if the ticket itself is unrelated). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -177,7 +177,7 @@ MyFrame::MyFrame(const wxChar *title)
|
|||||||
m_imageListNormal = new wxImageList(32, 32, true);
|
m_imageListNormal = new wxImageList(32, 32, true);
|
||||||
m_imageListSmall = new wxImageList(16, 16, true);
|
m_imageListSmall = new wxImageList(16, 16, true);
|
||||||
|
|
||||||
#if wxHAS_IMAGES_IN_RESOURCES
|
#ifdef wxHAS_IMAGES_IN_RESOURCES
|
||||||
m_imageListNormal->Add( wxIcon(wxT("icon1"), wxBITMAP_TYPE_ICO_RESOURCE) );
|
m_imageListNormal->Add( wxIcon(wxT("icon1"), wxBITMAP_TYPE_ICO_RESOURCE) );
|
||||||
m_imageListNormal->Add( wxIcon(wxT("icon2"), wxBITMAP_TYPE_ICO_RESOURCE) );
|
m_imageListNormal->Add( wxIcon(wxT("icon2"), wxBITMAP_TYPE_ICO_RESOURCE) );
|
||||||
m_imageListNormal->Add( wxIcon(wxT("icon3"), wxBITMAP_TYPE_ICO_RESOURCE) );
|
m_imageListNormal->Add( wxIcon(wxT("icon3"), wxBITMAP_TYPE_ICO_RESOURCE) );
|
||||||
|
Reference in New Issue
Block a user