summaryrefslogtreecommitdiff
path: root/src/wx/full_config_dialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/full_config_dialog.cc')
-rw-r--r--src/wx/full_config_dialog.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc
index 508d06c67..fe80aeae0 100644
--- a/src/wx/full_config_dialog.cc
+++ b/src/wx/full_config_dialog.cc
@@ -516,7 +516,7 @@ private:
_panel->GetSizer()->Add (_use_any_servers, 0, wxALL, _border);
vector<EditableListColumn> columns;
- columns.push_back (EditableListColumn(wx_to_std(_("IP address / host name"))));
+ columns.push_back (EditableListColumn(_("IP address / host name")));
_servers_list = new EditableList<string, ServerDialog> (
_panel,
columns,
@@ -837,7 +837,7 @@ private:
table->Add (_from, 1, wxEXPAND | wxALL);
vector<EditableListColumn> columns;
- columns.push_back (EditableListColumn(wx_to_std(_("Address"))));
+ columns.push_back (EditableListColumn(_("Address")));
add_label_to_sizer (table, _panel, _("CC addresses"), true);
_cc = new EditableList<string, EmailDialog> (
_panel,
@@ -969,7 +969,7 @@ private:
table->Add (_to, 1, wxEXPAND | wxALL);
vector<EditableListColumn> columns;
- columns.push_back (EditableListColumn(wx_to_std(_("Address"))));
+ columns.push_back (EditableListColumn(_("Address")));
add_label_to_sizer (table, _panel, _("CC addresses"), true);
_cc = new EditableList<string, EmailDialog> (
_panel,