mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:55:27 +00:00
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:
parent
da322c565f
commit
4043e2e7d2
|
@ -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.
|
||||
|
|
|
@ -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 ());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue