X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..6394c5966cf356f338dbd65fb762c9214dd0f738:/contrib/src/xrc/xh_combo.cpp diff --git a/contrib/src/xrc/xh_combo.cpp b/contrib/src/xrc/xh_combo.cpp index daeb0d70f7..2a17231c4f 100644 --- a/contrib/src/xrc/xh_combo.cpp +++ b/contrib/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; }