Merge pull request #653 from lioncash/internal-state

DolphinWX: Move some public variables to be private in CodeView
This commit is contained in:
Pierre Bourdon 2014-07-20 00:03:48 +02:00
commit c189a3491b
1 changed files with 6 additions and 7 deletions

View File

@ -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;