mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 06:58:10 +00:00
[ATL] Sync with Wine Staging 1.9.16. CORE-11866
svn path=/trunk/; revision=72271
This commit is contained in:
parent
3f76d7c905
commit
9c0416c9fd
2 changed files with 3 additions and 5 deletions
|
@ -811,7 +811,7 @@ static void IOCS_OnSize( IOCS* This, LPCRECT rect )
|
||||||
{
|
{
|
||||||
SIZEL inPix, inHi;
|
SIZEL inPix, inHi;
|
||||||
|
|
||||||
This->size.left = rect->left; This->size.right = rect->right; This->size.top = rect->top; This->size.bottom = rect->bottom;
|
This->size = *rect;
|
||||||
|
|
||||||
if ( !This->control )
|
if ( !This->control )
|
||||||
return;
|
return;
|
||||||
|
@ -874,9 +874,7 @@ static LRESULT IOCS_OnWndProc( IOCS *This, HWND hWnd, UINT uMsg, WPARAM wParam,
|
||||||
case WM_SIZE:
|
case WM_SIZE:
|
||||||
{
|
{
|
||||||
RECT r;
|
RECT r;
|
||||||
r.left = r.top = 0;
|
SetRect(&r, 0, 0, LOWORD(lParam), HIWORD(lParam));
|
||||||
r.right = LOWORD( lParam );
|
|
||||||
r.bottom = HIWORD( lParam );
|
|
||||||
IOCS_OnSize( This, &r );
|
IOCS_OnSize( This, &r );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -45,7 +45,7 @@ reactos/dll/directx/wine/wined3d # Synced to WineStaging-1.9.4
|
||||||
reactos/dll/win32/activeds # Synced to WineStaging-1.9.11
|
reactos/dll/win32/activeds # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/actxprxy # Synced to WineStaging-1.9.11
|
reactos/dll/win32/actxprxy # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/advpack # Synced to WineStaging-1.9.11
|
reactos/dll/win32/advpack # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/atl # Synced to WineStaging-1.9.11
|
reactos/dll/win32/atl # Synced to WineStaging-1.9.16
|
||||||
reactos/dll/win32/atl80 # Synced to WineStaging-1.9.11
|
reactos/dll/win32/atl80 # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/atl100 # Synced to WineStaging-1.9.11
|
reactos/dll/win32/atl100 # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/avifil32 # Synced to WineStaging-1.9.11
|
reactos/dll/win32/avifil32 # Synced to WineStaging-1.9.11
|
||||||
|
|
Loading…
Reference in a new issue