diff options
| author | John Peterson <jpeterson57@gmail.com> | 2009-09-01 02:41:48 +0000 |
|---|---|---|
| committer | John Peterson <jpeterson57@gmail.com> | 2009-09-01 02:41:48 +0000 |
| commit | d50b4c2ffc7e8bee6f480e8f85536363fb8bfe9b (patch) | |
| tree | 0247a16f905168fef3fa149a3f781122823f3eef /Source/Core/DebuggerWX/Src/RegisterWindow.cpp | |
| parent | a1dc78d5a81fc97acfadb3a5f38c1580aa7e2a7f (diff) | |
GUI: Linux problem, wxAuiNotebook can't have wxFrame pages
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4133 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/RegisterWindow.cpp')
| -rw-r--r-- | Source/Core/DebuggerWX/Src/RegisterWindow.cpp | 4 |
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(); |
