DolphinWX: Move some public variables to be private in CodeView
It's not used outside of the class, and it also shouldn't be modified outside of it either (considering it holds all the blr instructions inserted by the user).
This commit is contained in:
parent
5df45dfbba
commit
fa2944898f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue