Debugger: Remove unused instance variables

This commit is contained in:
Lioncash 2015-08-16 18:28:31 -04:00
parent c593bd226c
commit a824f6a74c
2 changed files with 0 additions and 5 deletions

View File

@ -5,7 +5,6 @@
#pragma once #pragma once
#include <memory> #include <memory>
#include <vector>
#include <wx/listctrl.h> #include <wx/listctrl.h>
#include <wx/panel.h> #include <wx/panel.h>
@ -19,14 +18,12 @@ class wxTextCtrl;
class JitBlockList : public wxListCtrl class JitBlockList : public wxListCtrl
{ {
std::vector<int> block_ranking;
public: public:
JitBlockList(wxWindow* parent, const wxWindowID id, const wxPoint& pos, const wxSize& size, long style); JitBlockList(wxWindow* parent, const wxWindowID id, const wxPoint& pos, const wxSize& size, long style);
void Init(); void Init();
void Update() override; void Update() override;
}; };
class CJitWindow : public wxPanel class CJitWindow : public wxPanel
{ {
public: public:
@ -49,7 +46,6 @@ private:
wxButton* button_refresh; wxButton* button_refresh;
wxTextCtrl* ppc_box; wxTextCtrl* ppc_box;
wxTextCtrl* x86_box; wxTextCtrl* x86_box;
wxListBox* top_instructions;
void OnSymbolListChange(wxCommandEvent& event); void OnSymbolListChange(wxCommandEvent& event);
void OnCallstackListChange(wxCommandEvent& event); void OnCallstackListChange(wxCommandEvent& event);

View File

@ -61,7 +61,6 @@ private:
CMemoryView* memview; CMemoryView* memview;
wxListBox* symbols; wxListBox* symbols;
wxButton* buttonGo;
wxTextCtrl* addrbox; wxTextCtrl* addrbox;
wxTextCtrl* valbox; wxTextCtrl* valbox;
}; };