summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp
diff options
context:
space:
mode:
authorsl1nk3.s <sl1nk3.s@gmail.com>2009-09-15 21:35:32 +0000
committersl1nk3.s <sl1nk3.s@gmail.com>2009-09-15 21:35:32 +0000
commitc71f76834ed7dfa22478b2f90ddcd752ac856ac2 (patch)
treedab0efa8e9fd6650e3d5ce1ca969653116934fcf /Source/Core/DebuggerWX/Src/BreakpointWindow.cpp
parent3117bde5fb59317f66d3088409a379851cc8e8cc (diff)
GUI : Added possibility to move the logwindow around in non-debugger mode, fix toolbar size issue, fix changing themes (again...) and added abort button to extract all as well as misc changes.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4281 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/BreakpointWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/BreakpointWindow.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp b/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp
index dee778c789..228bc60568 100644
--- a/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp
@@ -56,25 +56,6 @@ CBreakPointWindow::CBreakPointWindow(CCodeWindow* _pCodeWindow, wxWindow* parent
// Create the toolbar
RecreateToolbar();
}
-CBreakPointWindow::~CBreakPointWindow()
-{}
-
-void CBreakPointWindow::Save(IniFile& _IniFile) const
-{
- _IniFile.Set("BreakPoint", "x", GetPosition().x);
- _IniFile.Set("BreakPoint", "y", GetPosition().y);
- _IniFile.Set("BreakPoint", "w", GetSize().GetWidth());
- _IniFile.Set("BreakPoint", "h", GetSize().GetHeight());
-}
-void CBreakPointWindow::Load(IniFile& _IniFile)
-{
- int x,y,w,h;
- _IniFile.Get("BreakPoint", "x", &x, GetPosition().x);
- _IniFile.Get("BreakPoint", "y", &y, GetPosition().y);
- _IniFile.Get("BreakPoint", "w", &w, GetSize().GetWidth());
- _IniFile.Get("BreakPoint", "h", &h, GetSize().GetHeight());
- SetSize(x, y, w, h);
-}
void CBreakPointWindow::CreateGUIControls()
{