mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
There are days like that, when you'd better refrain from commit anything.
svn path=/trunk/; revision=56059
This commit is contained in:
@@ -680,11 +680,13 @@ HTHEME WINAPI GetWindowTheme(HWND hwnd)
|
||||
HRESULT WINAPI SetWindowTheme(HWND hwnd, LPCWSTR pszSubAppName,
|
||||
LPCWSTR pszSubIdList)
|
||||
{
|
||||
if(!IsWindow(hwnd))
|
||||
HRESULT hr;
|
||||
TRACE("(%p,%s,%s)\n", hwnd, debugstr_w(pszSubAppName),
|
||||
debugstr_w(pszSubIdList));
|
||||
|
||||
if(!IsWindow(hwnd))
|
||||
return E_HANDLE;
|
||||
|
||||
HRESULT hr;
|
||||
TRACE("(%p,%s,%s)\n", hwnd, debugstr_w(pszSubAppName),
|
||||
hr = UXTHEME_SetWindowProperty(hwnd, atSubAppName, pszSubAppName);
|
||||
if(SUCCEEDED(hr))
|
||||
hr = UXTHEME_SetWindowProperty(hwnd, atSubIdList, pszSubIdList);
|
||||
|
||||
Reference in New Issue
Block a user