Skip to content
Snippets Groups Projects
user avatar
Chris Lee authored
Previously, it was impossible to add Namespace entries to a
GListNamespaces returned by GDocument.namespaces; now, it
works.

```vala

var doc = new GDocument.from_string(xml);
var ns = doc.namespaces;
ns.add(new GNamespace(new Xml.Ns(null, "http://url", "url")));
var size = ns.size;
GLib.debug(@"namespace size: $size");
```
d0976a8b
History
Name Last commit Last update