mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 05:36:56 +00:00
2005-01-27 Mike Kestner <mkestner@novell.com>
* gtk/NodeView.cs : fix the value creation in the ctor. svn path=/trunk/gtk-sharp/; revision=39649
This commit is contained in:
parent
8152f4899e
commit
7ecf198bc9
|
@ -1,3 +1,7 @@
|
||||||
|
2005-01-27 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* gtk/NodeView.cs : fix the value creation in the ctor.
|
||||||
|
|
||||||
2005-01-26 Mike Kestner <mkestner@novell.com>
|
2005-01-26 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* glib/Value.cs : add a private debugging DllImport for ref_counts
|
* glib/Value.cs : add a private debugging DllImport for ref_counts
|
||||||
|
|
|
@ -38,8 +38,7 @@ namespace Gtk {
|
||||||
public NodeView (NodeStore store) : base (IntPtr.Zero)
|
public NodeView (NodeStore store) : base (IntPtr.Zero)
|
||||||
{
|
{
|
||||||
string[] names = { "model" };
|
string[] names = { "model" };
|
||||||
GLib.Value[] vals = { new GLib.Value (this, "model") };
|
GLib.Value[] vals = { new GLib.Value (store) };
|
||||||
vals [0].Val = store;
|
|
||||||
CreateNativeObject (names, vals);
|
CreateNativeObject (names, vals);
|
||||||
vals [0].Dispose ();
|
vals [0].Dispose ();
|
||||||
this.store = store;
|
this.store = store;
|
||||||
|
|
Loading…
Reference in a new issue