summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-12-01 22:56:18 -0500
committerLioncash <mathew1800@gmail.com>2014-12-01 23:02:50 -0500
commit10bfbebc780fb3693741a72f258a5da2c3daffa1 (patch)
tree5c9a3360cf4d10dec94f7eaf242662be92f9427a /Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp
parent64124a0d21db8fde638a0218f9e3dc704e1b7384 (diff)
DolphinWX: Specify wxID_ANY where -1 is used in controls
Diffstat (limited to 'Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp')
-rw-r--r--Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp b/Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp
index 60cea18ac4..982813f90c 100644
--- a/Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp
+++ b/Source/Core/DolphinWX/SoftwareVideoConfigDialog.cpp
@@ -22,7 +22,7 @@
template <typename T>
IntegerSetting<T>::IntegerSetting(wxWindow* parent, const wxString& label, T& setting, int minVal, int maxVal, long style) :
- wxSpinCtrl(parent, -1, label, wxDefaultPosition, wxDefaultSize, style),
+ wxSpinCtrl(parent, wxID_ANY, label, wxDefaultPosition, wxDefaultSize, style),
m_setting(setting)
{
SetRange(minVal, maxVal);
@@ -32,18 +32,18 @@ IntegerSetting<T>::IntegerSetting(wxWindow* parent, const wxString& label, T& se
SoftwareVideoConfigDialog::SoftwareVideoConfigDialog(wxWindow* parent, const std::string& title, const std::string& _ininame) :
- wxDialog(parent, -1,
+ wxDialog(parent, wxID_ANY,
wxString(wxString::Format(_("Dolphin %s Graphics Configuration"), title))),
vconfig(g_SWVideoConfig),
ininame(_ininame)
{
vconfig.Load((File::GetUserPath(D_CONFIG_IDX) + ininame + ".ini").c_str());
- wxNotebook* const notebook = new wxNotebook(this, -1);
+ wxNotebook* const notebook = new wxNotebook(this, wxID_ANY);
// -- GENERAL --
{
- wxPanel* const page_general= new wxPanel(notebook, -1);
+ wxPanel* const page_general= new wxPanel(notebook);
notebook->AddPage(page_general, _("General"));
wxBoxSizer* const szr_general = new wxBoxSizer(wxVERTICAL);