diff --git a/ChangeLog b/ChangeLog index 5ae67f86b..994d25fa4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-01-27 Mike Kestner + + * gtk/NodeView.cs : fix the value creation in the ctor. + 2005-01-26 Mike Kestner * glib/Value.cs : add a private debugging DllImport for ref_counts diff --git a/gtk/NodeView.cs b/gtk/NodeView.cs index 5a0153526..4451633ed 100644 --- a/gtk/NodeView.cs +++ b/gtk/NodeView.cs @@ -38,8 +38,7 @@ namespace Gtk { public NodeView (NodeStore store) : base (IntPtr.Zero) { string[] names = { "model" }; - GLib.Value[] vals = { new GLib.Value (this, "model") }; - vals [0].Val = store; + GLib.Value[] vals = { new GLib.Value (store) }; CreateNativeObject (names, vals); vals [0].Dispose (); this.store = store;