From f5659a7615ec94d742c3e9898439871f2044c09d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sat, 11 Mar 2006 20:43:35 +0000 Subject: [PATCH] Quick build fix, Stippi, can you review this? git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16723 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/DrawState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/servers/app/DrawState.cpp b/src/servers/app/DrawState.cpp index 47a89e70e0..a6162ab723 100644 --- a/src/servers/app/DrawState.cpp +++ b/src/servers/app/DrawState.cpp @@ -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; }