2004-08-31 Mike Kestner <mkestner@ximian.com>

* gtk/NodeStore.cs : add GType prop to expose native gtype.
	[Fixes #61226]

svn path=/trunk/gtk-sharp/; revision=33114
This commit is contained in:
Mike Kestner 2004-08-31 18:19:32 +00:00
parent da322c565f
commit 4043e2e7d2
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-08-31 Mike Kestner <mkestner@ximian.com>
* gtk/NodeStore.cs : add GType prop to expose native gtype.
[Fixes #61226]
2004-08-31 Mike Kestner <mkestner@ximian.com>
* glib/Marshaller.cs : fix utc offseting for time_tToDateTime.

View File

@ -438,5 +438,14 @@ namespace Gtk {
return GetNodeAtPath (path);
}
[DllImport("gtksharpglue")]
static extern IntPtr gtksharp_node_store_get_type ();
public static new GLib.GType GType {
get {
return new GLib.GType (gtksharp_node_store_get_type ());
}
}
}
}