#pragma hdrstop
#endif
+#if wxUSE_OWNER_DRAWN || !defined(__WXMSW__)
+
#include "wx/xrc/xh_chckl.h"
#include "wx/checklst.h"
+#include "wx/intl.h"
wxCheckListXmlHandler::wxCheckListXmlHandler()
: wxXmlResourceHandler(), m_insideBox(FALSE)
// handle <item checked="boolean">Label</item>
// 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;
}
}
(m_insideBox && node->GetName() == wxT("item")));
}
-
+#endif
\ No newline at end of file