Commit 41992ae3 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

mshtml: Use EqualRect() to compare RECTs.

parent d930b57d
...@@ -311,7 +311,7 @@ void update_plugin_window(PluginHost *host, HWND hwnd, const RECT *rect) ...@@ -311,7 +311,7 @@ void update_plugin_window(PluginHost *host, HWND hwnd, const RECT *rect)
TRACE("%p %s\n", hwnd, wine_dbgstr_rect(rect)); TRACE("%p %s\n", hwnd, wine_dbgstr_rect(rect));
if(memcmp(rect, &host->rect, sizeof(RECT))) { if(!EqualRect(rect, &host->rect)) {
host->rect = *rect; host->rect = *rect;
rect_changed = TRUE; rect_changed = TRUE;
} }
......
...@@ -507,7 +507,7 @@ static HRESULT WINAPI OleDocumentView_SetRect(IOleDocumentView *iface, LPRECT pr ...@@ -507,7 +507,7 @@ static HRESULT WINAPI OleDocumentView_SetRect(IOleDocumentView *iface, LPRECT pr
if(This->doc_obj->hwnd) { if(This->doc_obj->hwnd) {
GetClientRect(This->doc_obj->hwnd, &rect); GetClientRect(This->doc_obj->hwnd, &rect);
if(memcmp(prcView, &rect, sizeof(RECT))) { if(!EqualRect(prcView, &rect)) {
InvalidateRect(This->doc_obj->hwnd, NULL, TRUE); InvalidateRect(This->doc_obj->hwnd, NULL, TRUE);
SetWindowPos(This->doc_obj->hwnd, NULL, prcView->left, prcView->top, prcView->right, SetWindowPos(This->doc_obj->hwnd, NULL, prcView->left, prcView->top, prcView->right,
prcView->bottom, SWP_NOZORDER | SWP_NOACTIVATE); prcView->bottom, SWP_NOZORDER | SWP_NOACTIVATE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment