summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-29 14:32:48 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-29 14:32:48 +0100
commit11619ba7fd5537407798c01c6ca299fb64422338 (patch)
tree6c5d143623b54080cffc5a144fc9754e8cf7be23
parent9e124e8ce2eb7a9faeb91b33169ab1ae4912afb0 (diff)
Dialog says you can enter a host name, so we shouldn't be limiting to numbers/periods.
-rw-r--r--ChangeLog3
-rw-r--r--src/wx/server_dialog.cc9
2 files changed, 4 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 54fdc10fa..b654685a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2013-08-29 Carl Hetherington <cth@carlh.net>
+ * Remove limitation to numbers and periods in the
+ server host name dialogue box.
+
* Fix stuck-at-99% progress meters (#184).
* Version 1.01beta1 released.
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);