Author: fmantek
Date: Sun Oct 7 00:01:19 2007
New Revision: 279
Modified:
trunk/clients/cs/src/extensions/simplecontainer.cs
trunk/clients/cs/src/version/AssemblyVersion.cs
Log:
Fixed OriginalEvent to parse attributes correctly. There was an error
in the base class, but this was the only container element with
attributes, and we are mssing a testcase for that
Modified: trunk/clients/cs/src/extensions/simplecontainer.cs
==============================================================================
--- trunk/clients/cs/src/extensions/simplecontainer.cs (original)
+++ trunk/clients/cs/src/extensions/simplecontainer.cs Sun Oct 7
00:01:19 2007
@@ -195,6 +195,10 @@
}
childNode = childNode.NextSibling;
}
+ if (node.Attributes != null)
+ {
+ sc.ProcessAttributes(node);
+ }
}
return sc;
}
Modified: trunk/clients/cs/src/version/AssemblyVersion.cs
==============================================================================
--- trunk/clients/cs/src/version/AssemblyVersion.cs (original)
+++ trunk/clients/cs/src/version/AssemblyVersion.cs Sun Oct 7 00:01:19 2007
@@ -56,7 +56,7 @@
// You can specify all the values or you can default the Revision and
Build Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.1.0.0")]
+[assembly: AssemblyVersion("1.1.0.1")]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data API" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---