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.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/Source/Core/DebuggerWX/Src/RegisterWindow.cpp b/Source/Core/DebuggerWX/Src/RegisterWindow.cpp
index fdebddf8a1..0771929f26 100644
--- a/Source/Core/DebuggerWX/Src/RegisterWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/RegisterWindow.cpp
@@ -38,23 +38,6 @@ CRegisterWindow::~CRegisterWindow()
{
}
-void CRegisterWindow::Save(IniFile& _IniFile) const
-{
- _IniFile.Set("RegisterWindow", "x", GetPosition().x);
- _IniFile.Set("RegisterWindow", "y", GetPosition().y);
- _IniFile.Set("RegisterWindow", "w", GetSize().GetWidth());
- _IniFile.Set("RegisterWindow", "h", GetSize().GetHeight());
-}
-
-void CRegisterWindow::Load(IniFile& _IniFile)
-{
- int x,y,w,h;
- _IniFile.Get("RegisterWindow", "x", &x, GetPosition().x);
- _IniFile.Get("RegisterWindow", "y", &y, GetPosition().y);
- _IniFile.Get("RegisterWindow", "w", &w, GetSize().GetWidth());
- _IniFile.Get("RegisterWindow", "h", &h, GetSize().GetHeight());
- SetSize(x, y, w, h);
-}
void CRegisterWindow::CreateGUIControls()
{