summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-07-20 00:03:48 +0200
committerPierre Bourdon <delroth@gmail.com>2014-07-20 00:03:48 +0200
commitc189a3491bcb2dbe9f7ebf40a51ce4ce024c5595 (patch)
tree202a86c192bb10b57636fcb1f930d250a22f90cf /Source/Core
parent5df45dfbba9252877ed1b47b4a3e29c56dc22a4b (diff)
parentfa2944898f9e01908e11aae0afe912b3a5f41079 (diff)
Merge pull request #653 from lioncash/internal-state
DolphinWX: Move some public variables to be private in CodeView
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeView.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeView.h b/Source/Core/DolphinWX/Debugger/CodeView.h
index aa576e99b8..dd5d9425a3 100644
--- a/Source/Core/DolphinWX/Debugger/CodeView.h
+++ b/Source/Core/DolphinWX/Debugger/CodeView.h
@@ -45,13 +45,6 @@ public:
return m_selection;
}
- struct BlrStruct // for IDM_INSERTBLR
- {
- u32 address;
- u32 oldValue;
- };
- std::vector<BlrStruct> m_blrList;
-
void Center(u32 addr)
{
m_curAddress = addr;
@@ -79,6 +72,12 @@ private:
void LineTo(wxPaintDC &dc, int x, int y);
+ struct BlrStruct // for IDM_INSERTBLR
+ {
+ u32 address;
+ u32 oldValue;
+ };
+ std::vector<BlrStruct> m_blrList;
DebugInterface* m_debugger;
SymbolDB* m_symbol_db;