Merge pull request #2860 from lioncash/unused
DolphinWX: Remove unused instance variables and enums
This commit is contained in:
commit
1b2074e53f
|
@ -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);
|
||||||
|
|
|
@ -61,7 +61,6 @@ private:
|
||||||
CMemoryView* memview;
|
CMemoryView* memview;
|
||||||
wxListBox* symbols;
|
wxListBox* symbols;
|
||||||
|
|
||||||
wxButton* buttonGo;
|
|
||||||
wxTextCtrl* addrbox;
|
wxTextCtrl* addrbox;
|
||||||
wxTextCtrl* valbox;
|
wxTextCtrl* valbox;
|
||||||
};
|
};
|
||||||
|
|
|
@ -186,14 +186,6 @@ private:
|
||||||
EToolbar_Max
|
EToolbar_Max
|
||||||
};
|
};
|
||||||
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
Toolbar_Delete,
|
|
||||||
Toolbar_Add_BP,
|
|
||||||
Toolbar_Add_MC,
|
|
||||||
Num_Bitmaps
|
|
||||||
};
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
ADD_PANE_TOP,
|
ADD_PANE_TOP,
|
||||||
|
@ -206,7 +198,6 @@ private:
|
||||||
wxTimer m_poll_hotkey_timer;
|
wxTimer m_poll_hotkey_timer;
|
||||||
|
|
||||||
wxBitmap m_Bitmaps[EToolbar_Max];
|
wxBitmap m_Bitmaps[EToolbar_Max];
|
||||||
wxBitmap m_BitmapsMenu[EToolbar_Max];
|
|
||||||
|
|
||||||
wxMenuBar* m_menubar_shadow;
|
wxMenuBar* m_menubar_shadow;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue