Merge pull request #3029 from Tilka/fix_warning

Debugger: fix -Wunused-private-field warning
This commit is contained in:
flacs 2015-09-12 08:13:06 +00:00
commit f56117534e
2 changed files with 0 additions and 3 deletions

View file

@ -179,7 +179,6 @@ void GFXDebuggerPanel::CreateGUIControls()
m_pDumpList->Append(_("Statistics"));
m_pDumpList->SetSelection(0);
// Layout everything on m_MainPanel
wxBoxSizer *sMain = new wxBoxSizer(wxVERTICAL);
wxStaticBoxSizer* const pFlowCtrlBox = new wxStaticBoxSizer(wxVERTICAL, this, _("Flow Control"));

View file

@ -38,8 +38,6 @@ public:
void OnContinue() override;
private:
wxPanel* m_MainPanel;
wxButton* m_pButtonPause;
wxButton* m_pButtonPauseAtNext;
wxButton* m_pButtonPauseAtNextFrame;