Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #653 from lioncash/internal-state
DolphinWX: Move some public variables to be private in CodeView
  • Loading branch information
delroth committed Jul 19, 2014
2 parents 5df45df + fa29448 commit c189a34
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions Source/Core/DolphinWX/Debugger/CodeView.h
Expand Up @@ -45,13 +45,6 @@ class CCodeView : public wxControl
return m_selection;
}

struct BlrStruct // for IDM_INSERTBLR
{
u32 address;
u32 oldValue;
};
std::vector<BlrStruct> m_blrList;

void Center(u32 addr)
{
m_curAddress = addr;
Expand Down Expand Up @@ -79,6 +72,12 @@ class CCodeView : public wxControl

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;
Expand Down

0 comments on commit c189a34

Please sign in to comment.