mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[CMD][UXTHEME]
- Clarify misleading indentation CORE-11794 svn path=/trunk/; revision=72120
This commit is contained in:
parent
6feaa4a628
commit
933a038005
2 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue