From 1aef8d7cc68b4c96f95a7e5ea48db309b73cc2dc Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Sun, 14 Oct 2007 05:58:44 -0400 Subject: [PATCH] Enable a few passing tests --- dlls/comctl32/tests/monthcal.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dlls/comctl32/tests/monthcal.c b/dlls/comctl32/tests/monthcal.c index 2972aa7..5ad5748 100644 --- a/dlls/comctl32/tests/monthcal.c +++ b/dlls/comctl32/tests/monthcal.c @@ -761,7 +761,7 @@ static void test_monthcal_HitTest(HWND h expect(70, mchit.pt.x); expect(20, mchit.pt.y); expect(mchit.uHit, res); - todo_wine {expect(MCHT_TITLEBTNPREV, res);} + expect(MCHT_TITLEBTNPREV, res); /* (90, 20) is in active area - background section of the title */ mchit.pt.x = 90; @@ -770,7 +770,7 @@ static void test_monthcal_HitTest(HWND h expect(90, mchit.pt.x); expect(20, mchit.pt.y); expect(mchit.uHit, res); - todo_wine {expect(MCHT_TITLE, res);} + expect(MCHT_TITLE, res); /* (150, 20) is in active area - month section of the title */ mchit.pt.x = 150; @@ -797,7 +797,7 @@ static void test_monthcal_HitTest(HWND h expect(70, mchit.pt.x); expect(40, mchit.pt.y); expect(mchit.uHit, res); - todo_wine {expect(MCHT_CALENDARDAY, res);} + expect(MCHT_CALENDARDAY, res); /* (70, 55) is in active area - date from prev month */ mchit.pt.x = 70; @@ -806,7 +806,7 @@ static void test_monthcal_HitTest(HWND h expect(70, mchit.pt.x); expect(55, mchit.pt.y); expect(mchit.uHit, res); - todo_wine {expect(MCHT_CALENDARDATEPREV, res);} + expect(MCHT_CALENDARDATEPREV, res); /* (125, 115) is in active area - date from this month */ mchit.pt.x = 125; @@ -815,7 +815,7 @@ static void test_monthcal_HitTest(HWND h expect(125, mchit.pt.x); expect(115, mchit.pt.y); expect(mchit.uHit, res); - todo_wine {expect(MCHT_CALENDARDATE, res);} + expect(MCHT_CALENDARDATE, res); /* (80, 160) is in active area - background section of the title */ mchit.pt.x = 80; -- 1.4.1