Merge pull request #777 from cxd4/BORWSER
[GUI class] Un-typo "borwser" to "browser".
This commit is contained in:
commit
08133ac271
|
@ -862,7 +862,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
||||||
if (_this->RomBrowserVisible())
|
if (_this->RomBrowserVisible())
|
||||||
{
|
{
|
||||||
PostMessage((HWND)hWnd, WM_BORWSER_TOP, 0, 0);
|
PostMessage((HWND)hWnd, WM_BROWSER_TOP, 0, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -899,7 +899,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
|
|
||||||
if (fActive && _this->RomBrowserVisible())
|
if (fActive && _this->RomBrowserVisible())
|
||||||
{
|
{
|
||||||
PostMessage((HWND)hWnd, WM_BORWSER_TOP, 0, 0);
|
PostMessage((HWND)hWnd, WM_BROWSER_TOP, 0, 0);
|
||||||
}
|
}
|
||||||
if (_this->m_bMainWindow && bCPURunning())
|
if (_this->m_bMainWindow && bCPURunning())
|
||||||
{
|
{
|
||||||
|
@ -938,7 +938,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
_this->BringToTop();
|
_this->BringToTop();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_BORWSER_TOP:
|
case WM_BROWSER_TOP:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
||||||
_this->RomBrowserToTop();
|
_this->RomBrowserToTop();
|
||||||
|
|
|
@ -23,11 +23,11 @@ class CriticalSection;
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
WM_HIDE_CUROSR = WM_USER + 10,
|
WM_HIDE_CUROSR = WM_USER + 10,
|
||||||
WM_MAKE_FOCUS = WM_USER + 17,
|
WM_MAKE_FOCUS = WM_USER + 17,
|
||||||
WM_RESET_PLUGIN = WM_USER + 18,
|
WM_RESET_PLUGIN = WM_USER + 18,
|
||||||
WM_GAME_CLOSED = WM_USER + 19,
|
WM_GAME_CLOSED = WM_USER + 19,
|
||||||
WM_BORWSER_TOP = WM_USER + 40,
|
WM_BROWSER_TOP = WM_USER + 40,
|
||||||
};
|
};
|
||||||
|
|
||||||
class CMainGui :
|
class CMainGui :
|
||||||
|
|
Loading…
Reference in New Issue