diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-02-24 08:31:50 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-02-24 08:31:52 -0500 |
| commit | 30c91a300377d7ddf86931acb655be78fa10b5ad (patch) | |
| tree | 8ee7211d4f95f64f2a1cc3017ccdb1892c33eb7e /Source/Core/DolphinWX/Debugger/RegisterWindow.cpp | |
| parent | 7d5a558f31ee8eca26b2b5ee4775f07ffdb8b8bc (diff) | |
DolphinWX: Remove unnecessary control IDs
These don't need to be specifically identified.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/RegisterWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/RegisterWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp b/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp index 581ba0ed91..c46ef0a0bf 100644 --- a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp @@ -27,7 +27,7 @@ CRegisterWindow::CRegisterWindow(wxWindow* parent, wxWindowID id, void CRegisterWindow::CreateGUIControls() { wxBoxSizer *sGrid = new wxBoxSizer(wxVERTICAL); - m_GPRGridView = new CRegisterView(this, ID_GPR); + m_GPRGridView = new CRegisterView(this); sGrid->Add(m_GPRGridView, 1, wxGROW); SetSizer(sGrid); |
