diff options
Diffstat (limited to 'src/wx/table_dialog.cc')
| -rw-r--r-- | src/wx/table_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/table_dialog.cc b/src/wx/table_dialog.cc index c4ad5fff6..7653f8663 100644 --- a/src/wx/table_dialog.cc +++ b/src/wx/table_dialog.cc @@ -65,10 +65,10 @@ TableDialog::add (wxString text, bool, int flags) #ifdef DCPOMATIC_OSX if (label) { flags |= wxALIGN_RIGHT; - text += wxT (":"); + text += char_to_wx(":"); } #endif - auto m = new StaticText (this, wxT ("")); + auto m = new StaticText(this, {}); m->SetLabelMarkup (text); _table->Add (m, 0, flags, 6); return m; |
