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
2 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue