+ 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");
+ }
+ }