user32/tests: Fix MODIFIED macro.

This commit is contained in:
Gerald Pfeifer 2009-05-24 19:47:24 +02:00 committed by Alexandre Julliard
parent 6c915fb336
commit 551892b071

View File

@ -27,7 +27,7 @@
#include "winuser.h"
#include "winerror.h"
#define MODIFIED(rect) (rect.left = 10 && rect.right != 100 && rect.top == 10 && rect.bottom != 100)
#define MODIFIED(rect) (rect.left == 10 && rect.right != 100 && rect.top == 10 && rect.bottom != 100)
#define SAME(rect) (rect.left = 10 && rect.right == 100 && rect.top == 10 && rect.bottom == 100)
#define EMPTY(rect) (rect.left == rect.right && rect.bottom == rect.top)