X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/74c107ba4831e588b219f1c28161f2707f30d0c3..822e690b221486b63895b5f14a7fbee2bc966fe5:/contrib/src/xrc/xh_combo.cpp diff --git a/contrib/src/xrc/xh_combo.cpp b/contrib/src/xrc/xh_combo.cpp index 2a17231c4f..ffde936198 100644 --- a/contrib/src/xrc/xh_combo.cpp +++ b/contrib/src/xrc/xh_combo.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_combo.h" #endif @@ -25,8 +25,10 @@ #if wxUSE_COMBOBOX -wxComboBoxXmlHandler::wxComboBoxXmlHandler() -: wxXmlResourceHandler() , m_insideBox(FALSE) +IMPLEMENT_DYNAMIC_CLASS(wxComboBoxXmlHandler, wxXmlResourceHandler) + +wxComboBoxXmlHandler::wxComboBoxXmlHandler() +: wxXmlResourceHandler() , m_insideBox(false) { XRC_ADD_STYLE(wxCB_SIMPLE); XRC_ADD_STYLE(wxCB_SORT); @@ -36,14 +38,14 @@ wxComboBoxXmlHandler::wxComboBoxXmlHandler() } wxObject *wxComboBoxXmlHandler::DoCreateResource() -{ +{ if( m_class == wxT("wxComboBox")) { // find the selection long selection = GetLong( wxT("selection"), -1 ); // need to build the list of strings from children - m_insideBox = TRUE; + m_insideBox = true; CreateChildrenPrivately(NULL, GetParamNode(wxT("content"))); wxString *strings = (wxString *) NULL; if (strList.GetCount() > 0) @@ -73,7 +75,7 @@ wxObject *wxComboBoxXmlHandler::DoCreateResource() if (strings != NULL) delete[] strings; - strList.Clear(); // dump the strings + strList.Clear(); // dump the strings return control; }