mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-15 23:08:51 +00:00
Remove some superfluous arguments from some wx control creations
wx has these as default parameters.
This commit is contained in:
parent
e5b250fa79
commit
b2d47401b2
21 changed files with 224 additions and 300 deletions
|
@ -56,8 +56,7 @@ void LogConfigWindow::CreateGUIControls()
|
|||
for (int i = 0; i < MAX_LOGLEVEL; ++i)
|
||||
wxLevelsUse.Add(wxLevels[i]);
|
||||
m_verbosity = new wxRadioBox(this, wxID_ANY, _("Verbosity"),
|
||||
wxDefaultPosition, wxDefaultSize, wxLevelsUse, 0,
|
||||
wxRA_SPECIFY_ROWS, wxDefaultValidator);
|
||||
wxDefaultPosition, wxDefaultSize, wxLevelsUse, 0, wxRA_SPECIFY_ROWS);
|
||||
m_verbosity->Bind(wxEVT_COMMAND_RADIOBOX_SELECTED, &LogConfigWindow::OnVerbosityChange, this);
|
||||
|
||||
// Options
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue