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:
Mike Kestner 2005-02-03 15:03:17 +00:00
parent f120479d88
commit 3e5b480903
2 changed files with 6 additions and 1 deletions

View File

@ -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>
* glib/ObjectManager.cs (GetValidParentType): return null if

View File

@ -278,7 +278,7 @@ namespace Gtk {
public NodeStore (Type node_type) : base (IntPtr.Zero)
{
Raw = gtksharp_node_store_new ();
CreateNativeObject (new string [0], new GLib.Value [0]);
ScanType (node_type);
BuildTreeModelIface ();
}