mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 04:37:07 +00:00
2005-02-03 Mike Kestner <mkestner@novell.com>
* gtk/NodeStore.cs : use CreateNativeObject to allow subclassing. [Fixes #71749] svn path=/trunk/gtk-sharp/; revision=40065
This commit is contained in:
parent
f120479d88
commit
3e5b480903
|
@ -1,3 +1,8 @@
|
||||||
|
2005-02-03 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* gtk/NodeStore.cs : use CreateNativeObject to allow subclassing.
|
||||||
|
[Fixes #71749]
|
||||||
|
|
||||||
2005-02-03 Mike Kestner <mkestner@novell.com>
|
2005-02-03 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* glib/ObjectManager.cs (GetValidParentType): return null if
|
* glib/ObjectManager.cs (GetValidParentType): return null if
|
||||||
|
|
|
@ -278,7 +278,7 @@ namespace Gtk {
|
||||||
|
|
||||||
public NodeStore (Type node_type) : base (IntPtr.Zero)
|
public NodeStore (Type node_type) : base (IntPtr.Zero)
|
||||||
{
|
{
|
||||||
Raw = gtksharp_node_store_new ();
|
CreateNativeObject (new string [0], new GLib.Value [0]);
|
||||||
ScanType (node_type);
|
ScanType (node_type);
|
||||||
BuildTreeModelIface ();
|
BuildTreeModelIface ();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue