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:
Denis Pershin 1998-08-15 14:42:09 +00:00
parent 8656024d15
commit 8b21b87fe3

View File

@ -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 )