Fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32401 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
49bf4e3e68
commit
f45fac95d6
@ -17,6 +17,7 @@
|
||||
|
||||
#include "wx/defs.h"
|
||||
#include "wx/list.h"
|
||||
#include "wx/icon.h"
|
||||
|
||||
class WXDLLEXPORT wxDC;
|
||||
class WXDLLEXPORT wxBitmap;
|
||||
|
@ -117,7 +117,7 @@ const wxBitmap *wxGenericImageList::GetBitmapPtr( int index ) const
|
||||
}
|
||||
|
||||
// Get the bitmap
|
||||
wxBitmap wxImageList::GetBitmap(int index) const
|
||||
wxBitmap wxGenericImageList::GetBitmap(int index) const
|
||||
{
|
||||
const wxBitmap* bmp = GetBitmapPtr(index);
|
||||
if (bmp)
|
||||
@ -127,7 +127,7 @@ wxBitmap wxImageList::GetBitmap(int index) const
|
||||
}
|
||||
|
||||
// Get the icon
|
||||
wxIcon wxImageList::GetIcon(int index) const
|
||||
wxIcon wxGenericImageList::GetIcon(int index) const
|
||||
{
|
||||
const wxBitmap* bmp = GetBitmapPtr(index);
|
||||
if (bmp)
|
||||
|
Loading…
Reference in New Issue
Block a user