mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SHELL32] Remove some trailing spaces; use explicitly global namespace for some functions.
This commit is contained in:
parent
d967b5aa25
commit
be19fda765
2 changed files with 8 additions and 8 deletions
|
@ -400,7 +400,7 @@ LRESULT CDesktopBrowser::OnSettingChange(UINT uMsg, WPARAM wParam, LPARAM lParam
|
|||
if (m_hWndShellView)
|
||||
{
|
||||
/* Forward the message */
|
||||
SendMessageW(m_hWndShellView, uMsg, wParam, lParam);
|
||||
::SendMessageW(m_hWndShellView, uMsg, wParam, lParam);
|
||||
}
|
||||
|
||||
if (uMsg == WM_SETTINGCHANGE && wParam == SPI_SETWORKAREA && m_hWndShellView != NULL)
|
||||
|
@ -477,14 +477,14 @@ BOOL WINAPI SHDesktopMessageLoop(HANDLE hDesktop)
|
|||
if (FAILED_UNEXPECTEDLY(hr))
|
||||
return FALSE;
|
||||
|
||||
while ((bRet = GetMessageW(&Msg, NULL, 0, 0)) != 0)
|
||||
while ((bRet = ::GetMessageW(&Msg, NULL, 0, 0)) != 0)
|
||||
{
|
||||
if (bRet != -1)
|
||||
{
|
||||
if (shellView->TranslateAcceleratorW(&Msg) != S_OK)
|
||||
{
|
||||
TranslateMessage(&Msg);
|
||||
DispatchMessage(&Msg);
|
||||
::TranslateMessage(&Msg);
|
||||
::DispatchMessageW(&Msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -950,7 +950,7 @@ HRESULT CMenuToolbarBase::KeyboardItemChange(DWORD dwSelectType)
|
|||
{
|
||||
HWND tlw;
|
||||
m_menuBand->_GetTopLevelWindow(&tlw);
|
||||
SendMessageW(tlw, WM_CANCELMODE, 0, 0);
|
||||
::SendMessageW(tlw, WM_CANCELMODE, 0, 0);
|
||||
PostMessageW(WM_USER_CHANGETRACKEDITEM, index, MAKELPARAM(m_isTrackingPopup, FALSE));
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue