Author: spouliot
Date: 2007-06-13 09:26:35 -0400 (Wed, 13 Jun 2007)
New Revision: 79405

Modified:
   trunk/moon/src/ChangeLog
   trunk/moon/src/brush.cpp
Log:
2007-06-13  Sebastien Pouliot  <[EMAIL PROTECTED]> 

        * brush.cpp|h: Fix Brush::RelativeTransformProperty and 
        Brush::RelativeTransformProperty types.



Modified: trunk/moon/src/ChangeLog
===================================================================
--- trunk/moon/src/ChangeLog    2007-06-13 13:08:06 UTC (rev 79404)
+++ trunk/moon/src/ChangeLog    2007-06-13 13:26:35 UTC (rev 79405)
@@ -1,3 +1,8 @@
+2007-06-13  Sebastien Pouliot  <[EMAIL PROTECTED]> 
+
+       * brush.cpp|h: Fix Brush::RelativeTransformProperty and 
+       Brush::RelativeTransformProperty types.
+
 2007-06-13  Sebastien Pouliot  <[EMAIL PROTECTED]>
 
        * brush.cpp|h: Complete DependencyProperties for GradientBrush and

Modified: trunk/moon/src/brush.cpp
===================================================================
--- trunk/moon/src/brush.cpp    2007-06-13 13:08:06 UTC (rev 79404)
+++ trunk/moon/src/brush.cpp    2007-06-13 13:26:35 UTC (rev 79405)
@@ -448,8 +448,8 @@
 {
        /* Brush fields */
        Brush::OpacityProperty = DependencyObject::Register (Value::BRUSH, 
"Opacity", new Value (1.0));
-       Brush::RelativeTransformProperty = DependencyObject::Register 
(Value::BRUSH, "RelativeTransform", new Value ());
-       Brush::TransformProperty = DependencyObject::Register (Value::BRUSH, 
"Transform", new Value ());
+       Brush::RelativeTransformProperty = DependencyObject::Register 
(Value::BRUSH, "RelativeTransform", Value::TRANSFORMGROUP);
+       Brush::TransformProperty = DependencyObject::Register (Value::BRUSH, 
"Transform", Value::TRANSFORMGROUP);
 
        /* SolidColorBrush fields */
        SolidColorBrush::ColorProperty = DependencyObject::Register 
(Value::SOLIDCOLORBRUSH, "Color", new Value (Color (0x00FFFFFF)));

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to