Debugger: Fix class indentation

This commit is contained in:
Lioncash 2014-10-18 22:55:23 -04:00
parent 4ddd54847c
commit 635408b686
3 changed files with 143 additions and 149 deletions

View File

@ -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();
@ -108,7 +105,6 @@ class CCodeWindow
int iNbAffiliation[IDM_CODEWINDOW - IDM_LOGWINDOW + 1]; int iNbAffiliation[IDM_CODEWINDOW - IDM_LOGWINDOW + 1];
private: private:
enum enum
{ {
// Debugger GUI Objects // Debugger GUI Objects

View File

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