mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-03 17:58:34 +00:00
Clean up some of the commenting.
You do NOT need to use ///////////////////////////////////////////////////////////////////////////////////////////////////////// to signify the closing of a section when you are clearly showing the start of a new section after it. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4179 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
8ecfc72963
commit
c82c0b0b93
2 changed files with 12 additions and 28 deletions
|
@ -74,13 +74,12 @@ class CPluginInfo;
|
|||
class CPluginManager;
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// -------
|
||||
// Main
|
||||
// ッッッッッッッッッッッッッッッッッッッ
|
||||
|
||||
BEGIN_EVENT_TABLE(CCodeWindow, wxPanel)
|
||||
|
||||
// Menu bar
|
||||
// ッッッッッッッッッッッッッッッッッッッ
|
||||
EVT_MENU(IDM_INTERPRETER, CCodeWindow::OnCPUMode) // CPU Mode
|
||||
EVT_MENU(IDM_AUTOMATICSTART, CCodeWindow::OnCPUMode)
|
||||
EVT_MENU(IDM_BOOTTOPAUSE, CCodeWindow::OnCPUMode)
|
||||
|
@ -130,7 +129,6 @@ EVT_MENU(IDM_WRITEPROFILE, CCodeWindow::OnProfilerMenu)
|
|||
//EVT_UPDATE_UI(wxID_ANY, CCodeWindow::OnStatusBar_)
|
||||
|
||||
// Toolbar
|
||||
// ッッッッッッッッッッッッッッッッッッッ
|
||||
EVT_MENU(IDM_DEBUG_GO, CCodeWindow::OnCodeStep)
|
||||
EVT_MENU(IDM_STEP, CCodeWindow::OnCodeStep)
|
||||
EVT_MENU(IDM_STEPOVER, CCodeWindow::OnCodeStep)
|
||||
|
@ -141,7 +139,6 @@ EVT_TEXT(IDM_ADDRBOX, CCodeWindow::OnAddrBoxChange)
|
|||
|
||||
|
||||
// Other
|
||||
// ッッッッッッッッッッッッッッッッッッッ
|
||||
EVT_LISTBOX(ID_SYMBOLLIST, CCodeWindow::OnSymbolListChange)
|
||||
EVT_LISTBOX(ID_CALLSTACKLIST, CCodeWindow::OnCallstackListChange)
|
||||
EVT_LISTBOX(ID_CALLERSLIST, CCodeWindow::OnCallersListChange)
|
||||
|
@ -192,12 +189,10 @@ wxAuiToolBar *CCodeWindow::GetToolBar()
|
|||
{
|
||||
return Parent->m_ToolBarDebug;
|
||||
}
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// ----------
|
||||
// Events
|
||||
// ッッッッッッッッッッッッッッッッッッッッッ
|
||||
|
||||
void CCodeWindow::OnKeyDown(wxKeyEvent& event)
|
||||
{
|
||||
if ((event.GetKeyCode() == WXK_SPACE) && Parent->IsActive())
|
||||
|
@ -448,11 +443,11 @@ void CCodeWindow::CreateGUIControls(const SCoreStartupParameter& _LocalCoreStart
|
|||
|
||||
sync_event.Init();
|
||||
}
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// -------
|
||||
// Menus
|
||||
// ッッッッッッッッッッッッッッッッッッッ
|
||||
|
||||
// Create CPU Mode menus
|
||||
void CCodeWindow::CreateMenu(const SCoreStartupParameter& _LocalCoreStartupParameter, wxMenuBar * _pMenuBar)
|
||||
{
|
||||
|
@ -642,7 +637,6 @@ void CCodeWindow::OnJitMenu(wxCommandEvent& event)
|
|||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Toolbar
|
||||
// ッッッッッッッッッッッッッッッッッッッッッ
|
||||
void CCodeWindow::InitBitmaps()
|
||||
{
|
||||
// load original size 48x48
|
||||
|
@ -687,7 +681,6 @@ void CCodeWindow::PopulateToolbar(wxAuiToolBar* toolBar)
|
|||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Update GUI
|
||||
// ッッッッッッッッッッッッッッッッッッッッッ
|
||||
|
||||
void CCodeWindow::Update()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue