Skip to content
Commit d0976a8b authored by Chris Lee's avatar Chris Lee Committed by Daniel Espinosa
Browse files

Fix GDocument namespaces

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");
```
parent 2251291f
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment