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:
Mike Kestner 2005-01-27 15:30:19 +00:00
parent 8152f4899e
commit 7ecf198bc9
2 changed files with 5 additions and 2 deletions

View File

@ -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>
* glib/Value.cs : add a private debugging DllImport for ref_counts

View File

@ -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;