Home | History | Annotate | Download | only in win

Lines Matching refs:rectToInvalidate

167     NPRect rectToInvalidate;
168 rectToInvalidate.left = (clientRect.right - clientRect.left) / 2;
169 rectToInvalidate.top = (clientRect.bottom - clientRect.top) / 2;
170 rectToInvalidate.right = clientRect.right;
171 rectToInvalidate.bottom = clientRect.bottom;
172 NPN_InvalidateRect(&rectToInvalidate);
180 if (invalidRect.left != rectToInvalidate.left || invalidRect.top != rectToInvalidate.top || invalidRect.right != rectToInvalidate.right || invalidRect.bottom != rectToInvalidate.bottom) {
181 pluginLog(m_npp, "Expected invalid rect {left=%u, top=%u, right=%u, bottom=%u}, but got {left=%d, top=%d, right=%d, bottom=%d}", rectToInvalidate.left, rectToInvalidate.top, rectToInvalidate.right, rectToInvalidate.bottom, invalidRect.left, invalidRect.top, invalidRect.right, invalidRect.bottom);