From: Václav Slavík Date: Mon, 29 Sep 2008 19:51:59 +0000 (+0000) Subject: wxART_MISSING_IMAGE is not a valid wxArtClient value and doesn't make sense here X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/733b7d1eb3f08709abec2c008be115a5bd7a6933?ds=inline wxART_MISSING_IMAGE is not a valid wxArtClient value and doesn't make sense here git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55962 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/xrc/xh_bmpcbox.cpp b/src/xrc/xh_bmpcbox.cpp index 6fc2840bd6..138d2ee58b 100644 --- a/src/xrc/xh_bmpcbox.cpp +++ b/src/xrc/xh_bmpcbox.cpp @@ -43,7 +43,8 @@ wxObject *wxBitmapComboBoxXmlHandler::DoCreateResource() { wxCHECK_MSG(m_combobox, NULL, wxT("Incorrect syntax of XRC resource: ownerdrawnitem not within a bitmapcombobox!")); - m_combobox->Append(GetText(wxT("text")), GetBitmap(wxT("bitmap"), wxART_MISSING_IMAGE)); + m_combobox->Append(GetText(wxT("text")), + GetBitmap(wxT("bitmap"))); return m_combobox; }