DP: Just came back from 3 days fishing and found that forget to commit some
changes. GetBitmap added git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@548 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
8656024d15
commit
8b21b87fe3
@ -49,8 +49,11 @@ int wxImageList::Add( const wxBitmap &bitmap )
|
||||
};
|
||||
|
||||
wxBitmap *wxImageList::GetBitmap(int index) {
|
||||
wxNode *node = m_images.Nth( index );
|
||||
return (wxBitmap*)node->Data();
|
||||
wxNode *node = m_images.Nth(index);
|
||||
if (node != NULL)
|
||||
return (wxBitmap*)node->Data();
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
bool wxImageList::Replace( int index, const wxBitmap &bitmap )
|
||||
|
Loading…
Reference in New Issue
Block a user