Quick build fix, Stippi, can you review this?

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16723 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-03-11 20:43:35 +00:00
parent 5ac11f960a
commit f5659a7615
1 changed files with 2 additions and 2 deletions

View File

@ -369,10 +369,10 @@ DrawState::Transform(BRegion* region) const
rb.y++;
// add rect to converted region
// NOTE/TODO: the rect would not have to go
// through the whole interection test process,
// through the whole intersection test process,
// it is guaranteed not to overlap with any rect
// already contained in the region
converted.AddRect(BRect(lt, rb));
converted.Include(BRect(lt, rb));
}
*region = converted;
}