mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
OpenGL Plugin: code cleanup trying to follow code style wiki and updated copyright date
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2850 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -15,8 +15,8 @@
|
||||
// Official SVN repository and contact information can be found at
|
||||
// http://code.google.com/p/dolphin-emu/
|
||||
|
||||
#ifndef __CDebugger_h__
|
||||
#define __CDebugger_h__
|
||||
#ifndef _CDEBUGGER_H_
|
||||
#define _CDEBUGGER_H_
|
||||
|
||||
#include <wx/wx.h>
|
||||
#include <wx/notebook.h>
|
||||
@ -30,7 +30,7 @@ class CDebugger : public wxDialog
|
||||
public:
|
||||
CDebugger(wxWindow *parent,
|
||||
wxWindowID id = 1,
|
||||
const wxString &title = wxT("OGL Debug"),
|
||||
const wxString &title = wxT("OGL Debugguer"),
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = wxDEFAULT_FRAME_STYLE | wxCLIP_CHILDREN | wxNO_FULL_REPAINT_ON_RESIZE);
|
||||
@ -61,7 +61,6 @@ private:
|
||||
enum
|
||||
{
|
||||
ID_MAINPANEL = 2000,
|
||||
|
||||
ID_SAVETOFILE,
|
||||
ID_SHOWCONSOLE,
|
||||
ID_INFOLOG,
|
||||
@ -76,4 +75,5 @@ private:
|
||||
void OnClose(wxCloseEvent& event);
|
||||
void CreateGUIControls();
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif // _CDEBUGGER_H_
|
||||
|
Reference in New Issue
Block a user