From ecd7d0f7fbf0bd8eeeba9a5b265680d5ceb12a29 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 13 Jan 2019 20:24:53 +0000 Subject: Fix assertion failure on start due to > characters in de_DE translation passed to SetLabelMarkup. --- src/wx/initial_setup_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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)); -- cgit v1.2.3