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.cpp7
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);