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

View File

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