diff options
| author | John Peterson <jpeterson57@gmail.com> | 2009-08-26 09:19:15 +0000 |
|---|---|---|
| committer | John Peterson <jpeterson57@gmail.com> | 2009-08-26 09:19:15 +0000 |
| commit | b185fedb858cd261906abf0edb556d13af033ad1 (patch) | |
| tree | b14990e958922d3c07854ff324593b4561c0d108 /Source/Core/DebuggerWX/Src/RegisterWindow.cpp | |
| parent | 2e24e7db06ce685f8132d8b0d9c8bd97d2a74f56 (diff) | |
GUI debugger: Added more windows to aui
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4065 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/RegisterWindow.cpp')
| -rw-r--r-- | Source/Core/DebuggerWX/Src/RegisterWindow.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/DebuggerWX/Src/RegisterWindow.cpp b/Source/Core/DebuggerWX/Src/RegisterWindow.cpp index 2e9da61ad7..aa20f3697a 100644 --- a/Source/Core/DebuggerWX/Src/RegisterWindow.cpp +++ b/Source/Core/DebuggerWX/Src/RegisterWindow.cpp @@ -26,6 +26,7 @@ BEGIN_EVENT_TABLE(CRegisterWindow, wxDialog) 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) , m_GPRGridView(NULL) @@ -57,9 +58,9 @@ void CRegisterWindow::Load(IniFile& _IniFile) void CRegisterWindow::CreateGUIControls() { - SetTitle(wxT("Registers")); - SetIcon(wxNullIcon); - Center(); + //SetTitle(wxT("Registers")); + //SetIcon(wxNullIcon); + //Center(); wxBoxSizer *sGrid = new wxBoxSizer(wxVERTICAL); m_GPRGridView = new CRegisterView(this, ID_GPR); |
