X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..ed39ff57b30a70a2395e07887a70bc01e7a3b7ec:/src/xrc/xh_combo.cpp?ds=sidebyside diff --git a/src/xrc/xh_combo.cpp b/src/xrc/xh_combo.cpp index daeb0d70f7..2a17231c4f 100644 --- a/src/xrc/xh_combo.cpp +++ b/src/xrc/xh_combo.cpp @@ -21,6 +21,7 @@ #include "wx/xrc/xh_combo.h" #include "wx/combobox.h" +#include "wx/intl.h" #if wxUSE_COMBOBOX @@ -82,7 +83,10 @@ wxObject *wxComboBoxXmlHandler::DoCreateResource() // handle Label // add to the list - strList.Add(GetNodeContent(m_node)); + wxString str = GetNodeContent(m_node); + if (m_resource->GetFlags() & wxXRC_USE_LOCALE) + str = wxGetTranslation(str); + strList.Add(str); return NULL; }