X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/187d815255d240350c598721db1e0c1b4d3fb527..ad653fa23069c5d9378247084f03c9a718c3ad62:/src/xrc/xh_combo.cpp diff --git a/src/xrc/xh_combo.cpp b/src/xrc/xh_combo.cpp index da2040909c..78e1556cc9 100644 --- a/src/xrc/xh_combo.cpp +++ b/src/xrc/xh_combo.cpp @@ -22,8 +22,11 @@ #ifndef WX_PRECOMP #include "wx/intl.h" #include "wx/combobox.h" + #include "wx/textctrl.h" // for wxTE_PROCESS_ENTER #endif +#include "wx/xml/xml.h" + IMPLEMENT_DYNAMIC_CLASS(wxComboBoxXmlHandler, wxXmlResourceHandler) wxComboBoxXmlHandler::wxComboBoxXmlHandler() @@ -34,6 +37,7 @@ wxComboBoxXmlHandler::wxComboBoxXmlHandler() XRC_ADD_STYLE(wxCB_SORT); XRC_ADD_STYLE(wxCB_READONLY); XRC_ADD_STYLE(wxCB_DROPDOWN); + XRC_ADD_STYLE(wxTE_PROCESS_ENTER); AddWindowStyles(); }