Skip to content
Snippets Groups Projects
Commit 9ac913f2 authored by Daniel Espinosa's avatar Daniel Espinosa
Browse files

Changing some get to owned returning DomNode?

This is important in prepareation on implementing
them using returning owned objects, like GNode
derived clasess.
parent 2449699c
Branches
Tags
No related merge requests found
......@@ -45,11 +45,11 @@ public class GXml.DomMutationObserverInit : GLib.Object {
public interface GXml.DomMutationRecord : GLib.Object {
public abstract string mtype { get; }
public abstract DomNode target { get; }
public abstract DomNodeList added_nodes { get; set; }
public abstract DomNodeList removed_nodes { get; set; }
public abstract DomNode? previous_sibling { get; }
public abstract DomNode? next_sibling { get; }
public abstract DomNode target { owned get; }
public abstract DomNodeList added_nodes { owned get; set; }
public abstract DomNodeList removed_nodes { owned get; set; }
public abstract DomNode? previous_sibling { owned get; }
public abstract DomNode? next_sibling { owned get; }
public abstract string? attribute_name { get; }
public abstract string? attribute_namespace { get; }
public abstract string? old_value { get; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment