summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-29 14:50:55 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-29 14:50:55 +0100
commitb8724f408298ff3e804fb821fa15d3bcded0e3db (patch)
tree6b551ad6a7bc2845f105a5f44bc5151d9e600d1a /src/wx
parente60d69b3462755c5f98a460688d391822fdc62fb (diff)
parent11619ba7fd5537407798c01c6ca299fb64422338 (diff)
Merge branch '1.0' of /home/carl/git/dvdomatic into 1.0
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/server_dialog.cc9
1 files changed, 1 insertions, 8 deletions
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);