summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/RegisterWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DebuggerWX/Src/RegisterWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/RegisterWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DebuggerWX/Src/RegisterWindow.cpp b/Source/Core/DebuggerWX/Src/RegisterWindow.cpp
index aa20f3697a..fdebddf8a1 100644
--- a/Source/Core/DebuggerWX/Src/RegisterWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/RegisterWindow.cpp
@@ -22,13 +22,13 @@
extern const char* GetGRPName(unsigned int index);
-BEGIN_EVENT_TABLE(CRegisterWindow, wxDialog)
+BEGIN_EVENT_TABLE(CRegisterWindow, wxPanel)
EVT_CLOSE(CRegisterWindow::OnClose)
END_EVENT_TABLE()
CRegisterWindow::CRegisterWindow(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& position, const wxSize& size, long style)
- : wxDialog(parent, id, title, position, size, style)
+ : wxPanel(parent, id, position, size, style, title)
, m_GPRGridView(NULL)
{
CreateGUIControls();