summaryrefslogtreecommitdiff
path: root/src/wx/kdm_choice.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/kdm_choice.cc')
-rw-r--r--src/wx/kdm_choice.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/wx/kdm_choice.cc b/src/wx/kdm_choice.cc
index c8685e22c..113ad51b5 100644
--- a/src/wx/kdm_choice.cc
+++ b/src/wx/kdm_choice.cc
@@ -20,15 +20,16 @@
#include "kdm_choice.h"
+#include "wx_util.h"
KDMChoice::KDMChoice (wxWindow* parent)
: wxChoice (parent, wxID_ANY)
{
- Append("Modified Transitional 1", reinterpret_cast<void*>(dcp::Formulation::MODIFIED_TRANSITIONAL_1));
- Append("DCI Any", reinterpret_cast<void*>(dcp::Formulation::DCI_ANY));
- Append("DCI Specific", reinterpret_cast<void*>(dcp::Formulation::DCI_SPECIFIC));
- Append("Multiple Modified Transitional 1", reinterpret_cast<void*>(dcp::Formulation::MULTIPLE_MODIFIED_TRANSITIONAL_1));
+ Append(char_to_wx("Modified Transitional 1"), reinterpret_cast<void*>(dcp::Formulation::MODIFIED_TRANSITIONAL_1));
+ Append(char_to_wx("DCI Any"), reinterpret_cast<void*>(dcp::Formulation::DCI_ANY));
+ Append(char_to_wx("DCI Specific"), reinterpret_cast<void*>(dcp::Formulation::DCI_SPECIFIC));
+ Append(char_to_wx("Multiple Modified Transitional 1"), reinterpret_cast<void*>(dcp::Formulation::MULTIPLE_MODIFIED_TRANSITIONAL_1));
}