From f0ff33b0cfeb73157a3f5b48943ca37d23a067c6 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Fri, 20 Mar 2015 17:50:21 -0400 Subject: [PATCH] get rid of extra static box flag --- src/launcher/launchersetup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launcher/launchersetup.cpp b/src/launcher/launchersetup.cpp index b14b4f9..34cdcc4 100644 --- a/src/launcher/launchersetup.cpp +++ b/src/launcher/launchersetup.cpp @@ -458,7 +458,7 @@ void LauncherSetup::initTab_Network(wxNotebook* parent) // 'connection type' const wxString conn_types[] = { wxT("None"), wxT("Dialup Networking"), wxT("LAN/Direct Connection") }; const int num_conn_types = sizeof( conn_types ) / sizeof( wxString ); - m_Network_Connection = new wxRadioBox( panel, wxID_ANY, wxT("Internet Connection"), wxDefaultPosition, wxDefaultSize, num_conn_types, conn_types, 1, wxRA_SPECIFY_COLS|wxSTATIC_BORDER ); + m_Network_Connection = new wxRadioBox( panel, wxID_ANY, wxT("Internet Connection"), wxDefaultPosition, wxDefaultSize, num_conn_types, conn_types, 1, wxRA_SPECIFY_COLS ); bSizer->Add( m_Network_Connection, 0, wxALL|wxEXPAND, 5 ); conf_ptr = os_config_read_string("Network", "NetworkConnection", NULL); -- 2.39.2