[CMD][UXTHEME]

- Clarify misleading indentation
CORE-11794

svn path=/trunk/; revision=72120
This commit is contained in:
Thomas Faber 2016-08-06 07:08:52 +00:00
parent 6feaa4a628
commit 933a038005
2 changed files with 5 additions and 3 deletions

View file

@ -481,13 +481,15 @@ INT cmd_copy(LPTSTR param)
case _T('-'):
if (_tcslen(arg[i]) >= 3)
{
if (_totupper(arg[i][2]) == _T('Y'))
{
dwFlags &= ~COPY_NO_PROMPT;
dwFlags |= COPY_PROMPT;
}
}
break;
break;
case _T('Z'):
dwFlags |= COPY_RESTART;

View file

@ -797,7 +797,7 @@ HTHEME WINAPI GetWindowTheme(HWND hwnd)
HRESULT WINAPI SetWindowTheme(HWND hwnd, LPCWSTR pszSubAppName,
LPCWSTR pszSubIdList)
{
HRESULT hr;
HRESULT hr;
TRACE("(%p,%s,%s)\n", hwnd, debugstr_w(pszSubAppName),
debugstr_w(pszSubIdList));
@ -812,7 +812,7 @@ HRESULT WINAPI SetWindowTheme(HWND hwnd, LPCWSTR pszSubAppName,
if (!SUCCEEDED(hr))
return hr;
UXTHEME_broadcast_msg (hwnd, WM_THEMECHANGED);
UXTHEME_broadcast_msg (hwnd, WM_THEMECHANGED);
return hr;
}