diff --git a/ChangeLog b/ChangeLog index b3f5eec62..963bece40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-10-02 Vladimir Vukicevic + + * gtk/TreeView.custom: added TreeView Handle as argument + to set_model in Model property + 2002-09-29 Rachel Hestilow * glue/canvas-proxy.c (update), glue/canvas-proxy-marshal.list: @@ -34,7 +39,7 @@ * sample/Scribble.cs: Added missing casts from EventMask to int. -2002-09-15 Ricardo Fernández Pascual +2002-09-15 Ricardo Fernandez Pascual * glade/XML.custom: Added a constructor to read the glade file from a stream and to read it from a resource in an assembly. @@ -42,7 +47,7 @@ * sample/GladeTest.cs: Embed the glade file as a resource and use the new constructor. -2002-09-13 Ricardo Fernández Pascual +2002-09-13 Ricardo Fernandez Pascual * glade/HandlerNotFoundExeception.cs: Added. * glade/Makefile.in diff --git a/gtk/TreeView.custom b/gtk/TreeView.custom index 940fdafbf..73f73a33e 100644 --- a/gtk/TreeView.custom +++ b/gtk/TreeView.custom @@ -11,7 +11,7 @@ static extern IntPtr gtk_tree_view_get_model (IntPtr raw); [DllImport("gtk-x11-2.0")] - static extern IntPtr gtk_tree_view_set_model (IntPtr raw); + static extern IntPtr gtk_tree_view_set_model (IntPtr raw, IntPtr raw_model); /// Model Property /// Gets the model being displayed by the TreeView @@ -24,6 +24,6 @@ } set { - gtk_tree_view_set_model (value.Handle); + gtk_tree_view_set_model (Handle, value.Handle); } }