about summary refs log tree commit diff stats
path: root/src/connection_dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection_dialog.cpp')
-rw-r--r--src/connection_dialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/connection_dialog.cpp b/src/connection_dialog.cpp index 9dd9984..45be8b8 100644 --- a/src/connection_dialog.cpp +++ b/src/connection_dialog.cpp
@@ -4,10 +4,10 @@
4 4
5ConnectionDialog::ConnectionDialog() 5ConnectionDialog::ConnectionDialog()
6 : wxDialog(nullptr, wxID_ANY, "Connect to Archipelago") { 6 : wxDialog(nullptr, wxID_ANY, "Connect to Archipelago") {
7 server_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_server, wxDefaultPosition, 7 server_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_server,
8 {300, -1}); 8 wxDefaultPosition, {300, -1});
9 player_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_player, wxDefaultPosition, 9 player_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_player,
10 {300, -1}); 10 wxDefaultPosition, {300, -1});
11 password_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_password, 11 password_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_password,
12 wxDefaultPosition, {300, -1}); 12 wxDefaultPosition, {300, -1});
13 13