From 11619ba7fd5537407798c01c6ca299fb64422338 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 29 Aug 2013 14:32:48 +0100 Subject: Dialog says you can enter a host name, so we shouldn't be limiting to numbers/periods. --- src/wx/server_dialog.cc | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src') diff --git a/src/wx/server_dialog.cc b/src/wx/server_dialog.cc index 5e360b690..c1dbc4bca 100644 --- a/src/wx/server_dialog.cc +++ b/src/wx/server_dialog.cc @@ -37,15 +37,8 @@ ServerDialog::ServerDialog (wxWindow* parent) wxTextValidator validator (wxFILTER_INCLUDE_CHAR_LIST); wxArrayString list; - wxString n (wxT ("0123456789.")); - for (size_t i = 0; i < n.Length(); ++i) { - list.Add (n[i]); - } - - validator.SetIncludes (list); - add_label_to_sizer (table, this, _("Host name or IP address"), true); - _host = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator); + _host = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size); table->Add (_host, 1, wxEXPAND | wxALL); add_label_to_sizer (table, this, _("Threads to use"), true); -- cgit v1.2.3