Author: fmantek
Date: Mon Oct  8 05:41:27 2007
New Revision: 283

Modified:
   trunk/clients/cs/RELEASE_NOTES.HTML
   trunk/clients/cs/src/extensions/extcollections.cs

Log:
Fixed the onclear() handler of the new extensionCollection base   
class. It was incorrectly casting to When obects, which could cause  a 
runtime error when called

Modified: trunk/clients/cs/RELEASE_NOTES.HTML
==============================================================================
--- trunk/clients/cs/RELEASE_NOTES.HTML (original)
+++ trunk/clients/cs/RELEASE_NOTES.HTML Mon Oct  8 05:41:27 2007
@@ -19,6 +19,9 @@
             only instance of this.</li>
         <li>Fixed the OriginalStartTime get/set method which was using the
             wrong constant of the OriginalEvent object.</li>
+        <li>Fixed the onclear() handler of the new extensionCollection base
+            class. It was incorrectly casting to When obects, which 
could cause
+            a runtime error when called.</li>
     </ul>
 </ul>


Modified: trunk/clients/cs/src/extensions/extcollections.cs
==============================================================================
--- trunk/clients/cs/src/extensions/extcollections.cs   (original)
+++ trunk/clients/cs/src/extensions/extcollections.cs   Mon Oct  8 
05:41:27 2007
@@ -127,7 +127,7 @@
         {
             for (int i=0; i< this.Count;i++)
             {
-                this.atomElement.ExtensionElements.Remove((When)List[i]);
+                this.atomElement.ExtensionElements.Remove(List[i]);
             }
         }
     }

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Data API" group.
To post to this group, send email to google-help-dataapi@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to