From 63eaca59957f837a8166c5daf78783b9294df71b Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Sun, 26 Nov 2006 16:59:44 +0000 Subject: [PATCH] OK some printfs --- region.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/region.cc b/region.cc index fbcb793..5141b72 100644 --- a/region.cc +++ b/region.cc @@ -38,7 +38,7 @@ Region Region::subtract(Region& other) if (x < other.x) { - printf("Case 1\n"); +OK printf("Case 1\n"); s.x = x; s.y = y; s.w = other.x - x; @@ -46,7 +46,7 @@ Region Region::subtract(Region& other) } else if (x2() > other.x2()) { - printf("Case 2\n"); +OK printf("Case 2\n"); s.x = other.x2()+1; s.y = y; s.w = w - s.x; @@ -54,7 +54,7 @@ Region Region::subtract(Region& other) } else if (y < other.y) { - printf("Case 3\n"); +OK printf("Case 3\n"); s.x = x; s.y = y; s.w = w; @@ -62,7 +62,7 @@ Region Region::subtract(Region& other) } else if (y2() > other.y2()) { - printf("Case 4\n"); +OK printf("Case 4\n"); s.x = x; s.y = other.y2()+1; s.w = w; -- 2.39.2