Fix warnings

This commit is contained in:
Tillmann Karras
2016-01-28 23:53:08 +00:00
parent e1f21602fd
commit bf643c98aa
4 changed files with 5 additions and 7 deletions

View File

@ -7,7 +7,6 @@
#include <wx/panel.h>
class LogManager;
class CLogWindow;
class wxCheckBox;
class wxCheckListBox;
class wxRadioBox;
@ -15,7 +14,7 @@ class wxRadioBox;
class LogConfigWindow : public wxPanel
{
public:
LogConfigWindow(wxWindow* parent, CLogWindow *log_window, wxWindowID id = wxID_ANY);
LogConfigWindow(wxWindow* parent, wxWindowID id = wxID_ANY);
~LogConfigWindow();
void SaveSettings();
@ -23,7 +22,6 @@ public:
private:
LogManager *m_LogManager;
CLogWindow *m_LogWindow;
bool m_writeFile, m_writeConsole, m_writeWindow;
bool enableAll;