diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-05-07 21:04:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-07 21:04:30 +0200 |
| commit | 9f39fa2e13e29b5954d109aee83099b38727cf4a (patch) | |
| tree | 85180eeefada1f5c77471535f48cbe432d129797 /Source/Core/DolphinWX/NetPlay/NetPlaySetupFrame.cpp | |
| parent | 59dab8b15c1315a981ff0be33dbd1e570b3c1885 (diff) | |
| parent | 994b4040bf97e85cd5bfd9dcd227e73179c518e3 (diff) | |
Merge pull request #5380 from JosJuice/minor-text-fixes
Minor text fixes
Diffstat (limited to 'Source/Core/DolphinWX/NetPlay/NetPlaySetupFrame.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/NetPlay/NetPlaySetupFrame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/NetPlay/NetPlaySetupFrame.cpp b/Source/Core/DolphinWX/NetPlay/NetPlaySetupFrame.cpp index 4a43321268..14967fad76 100644 --- a/Source/Core/DolphinWX/NetPlay/NetPlaySetupFrame.cpp +++ b/Source/Core/DolphinWX/NetPlay/NetPlaySetupFrame.cpp @@ -223,11 +223,11 @@ wxNotebook* NetPlaySetupFrame::CreateNotebookGUI(wxWindow* parent) // host tab { - m_host_port_lbl = new wxStaticText(host_tab, wxID_ANY, _("Port :")); + m_host_port_lbl = new wxStaticText(host_tab, wxID_ANY, _("Port:")); m_host_port_text = new wxTextCtrl(host_tab, wxID_ANY, std::to_string(NetPlayHostConfig::DEFAULT_LISTEN_PORT)); - m_traversal_listen_port_enabled = new wxCheckBox(host_tab, wxID_ANY, _("Force Listen Port: ")); + m_traversal_listen_port_enabled = new wxCheckBox(host_tab, wxID_ANY, _("Force Listen Port:")); m_traversal_listen_port = new wxSpinCtrl(host_tab, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 1, 65535); m_traversal_listen_port->SetMinSize(WxUtils::GetTextWidgetMinSize(m_traversal_listen_port)); |
