Module: wine Branch: master Commit: 82fa7dea2a86a43af51f7d4b3f459acd54e4e2bd URL: http://source.winehq.org/git/wine.git/?a=commit;h=82fa7dea2a86a43af51f7d4b3f...
Author: Michael Stefaniuc mstefani@redhat.de Date: Thu Jun 16 10:28:13 2016 +0200
user32/tests: Remove an unused macro.
Signed-off-by: Michael Stefaniuc mstefani@redhat.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/user32/tests/static.c | 3 --- 1 file changed, 3 deletions(-)
diff --git a/dlls/user32/tests/static.c b/dlls/user32/tests/static.c index 841889d..929b50d 100644 --- a/dlls/user32/tests/static.c +++ b/dlls/user32/tests/static.c @@ -33,9 +33,6 @@ static HWND hMainWnd;
#define expect_eq(expr, value, type, fmt) { type val = expr; ok(val == (value), #expr " expected " fmt " got " fmt "\n", (value), val); } -#define expect_rect(r, _left, _top, _right, _bottom) ok(r.left == _left && r.top == _top && \ - r.bottom == _bottom && r.right == _right, "Invalid rect (%d,%d) (%d,%d) vs (%d,%d) (%d,%d)\n", \ - r.left, r.top, r.right, r.bottom, _left, _top, _right, _bottom);
static int g_nReceivedColorStatic = 0;