X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/819559b2ac7d2250097ce0b1d9d443164752be09..4f260c9c68b42e6ccc82710efe6ca6e8418e721d:/src/xrc/xh_choicbk.cpp diff --git a/src/xrc/xh_choicbk.cpp b/src/xrc/xh_choicbk.cpp index 4b8390db17..16b9afcd25 100644 --- a/src/xrc/xh_choicbk.cpp +++ b/src/xrc/xh_choicbk.cpp @@ -84,6 +84,19 @@ wxObject *wxChoicebookXmlHandler::DoCreateResource() int imgIndex = imgList->Add(bmp); m_choicebook->SetPageImage(m_choicebook->GetPageCount()-1, imgIndex ); } + else if ( HasParam(wxT("image")) ) + { + if ( m_choicebook->GetImageList() ) + { + m_choicebook->SetPageImage(m_choicebook->GetPageCount()-1, + GetLong(wxT("image")) ); + } + else // image without image list? + { + ReportError(n, "image can only be used in conjunction " + "with imagelist"); + } + } } else { @@ -108,6 +121,10 @@ wxObject *wxChoicebookXmlHandler::DoCreateResource() GetStyle(wxT("style")), GetName()); + wxImageList *imagelist = GetImageList(); + if ( imagelist ) + nb->AssignImageList(imagelist); + wxChoicebook *old_par = m_choicebook; m_choicebook = nb; bool old_ins = m_isInside;