mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Merge pull request #1335 from lioncash/indent
Debugger: Fix class indentation
This commit is contained in:
@ -32,19 +32,16 @@ class wxListBox;
|
|||||||
class wxMenu;
|
class wxMenu;
|
||||||
class wxMenuBar;
|
class wxMenuBar;
|
||||||
|
|
||||||
class CCodeWindow
|
class CCodeWindow : public wxPanel
|
||||||
: public wxPanel
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
CCodeWindow(const SCoreStartupParameter& _LocalCoreStartupParameter,
|
CCodeWindow(const SCoreStartupParameter& _LocalCoreStartupParameter,
|
||||||
CFrame * parent,
|
CFrame * parent,
|
||||||
wxWindowID id = wxID_ANY,
|
wxWindowID id = wxID_ANY,
|
||||||
const wxPoint& pos = wxDefaultPosition,
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
const wxSize& size = wxDefaultSize,
|
const wxSize& size = wxDefaultSize,
|
||||||
long style = wxTAB_TRAVERSAL | wxBORDER_NONE,
|
long style = wxTAB_TRAVERSAL | wxBORDER_NONE,
|
||||||
const wxString& name = _("Code")
|
const wxString& name = _("Code"));
|
||||||
);
|
|
||||||
|
|
||||||
void Load();
|
void Load();
|
||||||
void Save();
|
void Save();
|
||||||
@ -107,8 +104,7 @@ class CCodeWindow
|
|||||||
bool bShowOnStart[IDM_VIDEOWINDOW - IDM_LOGWINDOW + 1];
|
bool bShowOnStart[IDM_VIDEOWINDOW - IDM_LOGWINDOW + 1];
|
||||||
int iNbAffiliation[IDM_CODEWINDOW - IDM_LOGWINDOW + 1];
|
int iNbAffiliation[IDM_CODEWINDOW - IDM_LOGWINDOW + 1];
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
// Debugger GUI Objects
|
// Debugger GUI Objects
|
||||||
|
@ -13,10 +13,10 @@ class wxTextCtrl;
|
|||||||
|
|
||||||
class MemoryCheckDlg : public wxDialog
|
class MemoryCheckDlg : public wxDialog
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MemoryCheckDlg(CBreakPointWindow *parent);
|
MemoryCheckDlg(CBreakPointWindow *parent);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CBreakPointWindow *m_parent;
|
CBreakPointWindow *m_parent;
|
||||||
wxCheckBox* m_pReadFlag;
|
wxCheckBox* m_pReadFlag;
|
||||||
wxCheckBox* m_pWriteFlag;
|
wxCheckBox* m_pWriteFlag;
|
||||||
|
@ -22,11 +22,9 @@ class wxListBox;
|
|||||||
class wxTextCtrl;
|
class wxTextCtrl;
|
||||||
class wxWindow;
|
class wxWindow;
|
||||||
|
|
||||||
class CMemoryWindow
|
class CMemoryWindow : public wxPanel
|
||||||
: public wxPanel
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
CMemoryWindow(wxWindow* parent,
|
CMemoryWindow(wxWindow* parent,
|
||||||
wxWindowID id = wxID_ANY,
|
wxWindowID id = wxID_ANY,
|
||||||
const wxPoint& pos = wxDefaultPosition,
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
@ -48,7 +46,7 @@ class CMemoryWindow
|
|||||||
|
|
||||||
void JumpToAddress(u32 _Address);
|
void JumpToAddress(u32 _Address);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
|
|
||||||
CMemoryView* memview;
|
CMemoryView* memview;
|
||||||
|
Reference in New Issue
Block a user