Author: rolf
Date: 2007-06-18 13:00:39 -0400 (Mon, 18 Jun 2007)
New Revision: 80022

Modified:
   trunk/olive/class/agclr/ChangeLog
   trunk/olive/class/agclr/System.Windows.Media.Animation/Timeline.cs
Log:
* System.Windows.Media.Animation/Timeline.cs: Implement missing
  property.

Modified: trunk/olive/class/agclr/ChangeLog
===================================================================
--- trunk/olive/class/agclr/ChangeLog   2007-06-18 16:59:04 UTC (rev 80021)
+++ trunk/olive/class/agclr/ChangeLog   2007-06-18 17:00:39 UTC (rev 80022)
@@ -1,5 +1,10 @@
 2007-06-18  Rolf Bjarne Kvinge <[EMAIL PROTECTED]> 
 
+       * System.Windows.Media.Animation/Timeline.cs: Implement missing
+         property.
+
+2007-06-18  Rolf Bjarne Kvinge <[EMAIL PROTECTED]> 
+
        * agclr.dll.sources: Update.
 
 2007-06-18  Rolf Bjarne Kvinge <[EMAIL PROTECTED]> 

Modified: trunk/olive/class/agclr/System.Windows.Media.Animation/Timeline.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media.Animation/Timeline.cs  
2007-06-18 16:59:04 UTC (rev 80021)
+++ trunk/olive/class/agclr/System.Windows.Media.Animation/Timeline.cs  
2007-06-18 17:00:39 UTC (rev 80022)
@@ -65,12 +65,11 @@
                
                public Nullable<TimeSpan> BeginTime {
                        get {
-                               // Toshok: help
-                               return null;
+                               return (Nullable<TimeSpan>) GetValue 
(BeginTimeProperty);
                        }
                        
                        set {
-                               // Toshok: help
+                               SetValue (BeginTimeProperty, value);
                        }
                }
                public Duration Duration {

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

Reply via email to