Fix assertion failure on start due to > characters in de_DE translation passed to...
authorCarl Hetherington <cth@carlh.net>
Sun, 13 Jan 2019 20:24:53 +0000 (20:24 +0000)
committerCarl Hetherington <cth@carlh.net>
Sun, 13 Jan 2019 20:24:53 +0000 (20:24 +0000)
src/wx/initial_setup_dialog.cc

index 0d04c5002f8259a22f9b871c8d3016a787a72280..65b005207b1bc3fcbb5cc347cd8910f62d03d286 100644 (file)
@@ -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));