Remove unused (and broken) macro fromdlls/user32/tests/text.c

Gerald Pfeifer gerald at pfeifer.com
Thu May 28 16:22:06 CDT 2009


After fixing the MODIFIED macro (thanks for applying that patch!), I 
noticed that SAME is broken as well.  And unused.  So let's yank it.

Gerald


ChangeLog:
Remove unused SAME macro.

diff --git a/dlls/user32/tests/text.c b/dlls/user32/tests/text.c
index a55c014..080e5dd 100644
--- a/dlls/user32/tests/text.c
+++ b/dlls/user32/tests/text.c
@@ -28,7 +28,6 @@
 #include "winerror.h"
 
 #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)
 
 static void test_DrawTextCalcRect(void)



More information about the wine-patches mailing list