summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-13 20:24:53 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-13 20:24:53 +0000
commitecd7d0f7fbf0bd8eeeba9a5b265680d5ceb12a29 (patch)
treebd66cb748731e6ade147e2c05af54ea475a1d768 /src
parentb7602ca3edaec9d0333efcd33f9f50e856b6cd9f (diff)
Fix assertion failure on start due to > characters in de_DE translation passed to SetLabelMarkup.
Diffstat (limited to 'src')
-rw-r--r--src/wx/initial_setup_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/initial_setup_dialog.cc b/src/wx/initial_setup_dialog.cc
index 0d04c5002..65b005207 100644
--- a/src/wx/initial_setup_dialog.cc
+++ b/src/wx/initial_setup_dialog.cc
@@ -59,7 +59,7 @@ InitialSetupDialog::InitialSetupDialog ()
wxStaticText* text2 = new StaticText (this, wxEmptyString, wxDefaultPosition, wxSize(400, -1));
sizer->Add (text2, 0, wxEXPAND | wxALL, 12);
- text2->SetLabelMarkup (_("\nYou can change the mode at any time from the General page of Preferences."));
+ text2->SetLabel (_("\nYou can change the mode at any time from the General page of Preferences."));
_simple->Bind (wxEVT_RADIOBUTTON, boost::bind(&InitialSetupDialog::interface_complexity_changed, this));
_full->Bind (wxEVT_RADIOBUTTON, boost::bind(&InitialSetupDialog::interface_complexity_changed, this));