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
2 changed files with 14 additions and 0 deletions
|
@ -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>
|
2004-08-31 Mike Kestner <mkestner@ximian.com>
|
||||||
|
|
||||||
* glib/Marshaller.cs : fix utc offseting for time_tToDateTime.
|
* glib/Marshaller.cs : fix utc offseting for time_tToDateTime.
|
||||||
|
|
|
@ -438,5 +438,14 @@ namespace Gtk {
|
||||||
|
|
||||||
return GetNodeAtPath (path);
|
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