From: Iain Lane <laney@ubuntu.com>
Date: Sun, 22 May 2011 20:06:57 +0100
Subject: Fix CS0188 compilation errors in ActorBox.custom

---
 clutter/Clutter/ActorBox.custom |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/clutter/Clutter/ActorBox.custom b/clutter/Clutter/ActorBox.custom
index dee3e8a..d6ca406 100644
--- a/clutter/Clutter/ActorBox.custom
+++ b/clutter/Clutter/ActorBox.custom
@@ -28,10 +28,10 @@ private float x1, y1, x2, y2;
         
 public ActorBox (float x, float y, float width, float height)
 {
-    X1 = x;
-    Y1 = y;
-    Width = width;
-    Height = height;
+    x1 = x;
+    y1 = y;
+    x2 = x1 + width;
+    y2 = y1 + height;
 }
 
 public override string ToString ()
-- 
