Use wxGenericImageList for wxMSW/wxUniv now; this

allows us to remove the MSW-specific code in wxUniv's wxNotebook
(maybe elsewhere?)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-08-18 22:42:58 +00:00
parent 7be6137a8c
commit c482b99ec9
6 changed files with 63 additions and 56 deletions

View File

@@ -462,7 +462,9 @@ void wxNotebook::DoDrawTab(wxDC& dc, const wxRect& rect, size_t n)
{
int image = m_images[n];
#ifdef __WXMSW__ // FIXME
// Not needed now that wxGenericImageList is being
// used for wxUniversal under MSW
#if 0 // def __WXMSW__ // FIXME
int w, h;
m_imageList->GetSize(n, w, h);
bmp.Create(w, h);