Merge pull request #260 from zii-dmg/SListOwnership
Fixed SList ownership
This commit is contained in:
commit
9828244ffc
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ namespace GLib {
|
||||||
|
|
||||||
public SList (IntPtr raw, System.Type element_type) : this (raw, element_type, false, false) {}
|
public SList (IntPtr raw, System.Type element_type) : this (raw, element_type, false, false) {}
|
||||||
|
|
||||||
public SList (IntPtr raw, System.Type element_type, bool owned, bool elements_owned) : base (raw, element_type, false, false) {}
|
public SList (IntPtr raw, System.Type element_type, bool owned, bool elements_owned) : base (raw, element_type, owned, elements_owned) {}
|
||||||
|
|
||||||
public SList (object[] members, System.Type element_type, bool owned, bool elements_owned) : this (IntPtr.Zero, element_type, owned, elements_owned)
|
public SList (object[] members, System.Type element_type, bool owned, bool elements_owned) : this (IntPtr.Zero, element_type, owned, elements_owned)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue