[Gtk-sharp-list] small patch to TreeView.custom

Vladimir Vukicevic vladimir@pobox.com
02 Oct 2002 21:22:50 -0700


--=-fhykPU4JYYXrM+KJhIP2
Content-Type: text/plain
Content-Transfer-Encoding: 7bit


The setter for the Model property wasn't passing in the treeview's
Handle.  I can commit this if this is okay (or someone else apply the
patch :)

	- Vlad

-- 
Vladimir Vukicevic <vladimir@pobox.com>

--=-fhykPU4JYYXrM+KJhIP2
Content-Disposition: attachment; filename=treeview.patch
Content-Transfer-Encoding: quoted-printable
Content-Type: text/x-patch; name=treeview.patch; charset=ANSI_X3.4-1968

Index: ChangeLog
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/gtk-sharp/ChangeLog,v
retrieving revision 1.226
diff -u -u -r1.226 ChangeLog
--- ChangeLog	30 Sep 2002 02:21:05 -0000	1.226
+++ ChangeLog	3 Oct 2002 04:54:42 -0000
@@ -1,3 +1,8 @@
+2002-10-02  Vladimir Vukicevic  <vladimir@pobox.com
+
+	* gtk/TreeView.custom: added TreeView Handle as argument
+	to set_model in Model property
+
 2002-09-29  Rachel Hestilow  <hestilow@ximian.com>
=20
 	* glue/canvas-proxy.c (update), glue/canvas-proxy-marshal.list:
Index: gtk/TreeView.custom
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/gtk-sharp/gtk/TreeView.custom,v
retrieving revision 1.3
diff -u -u -r1.3 TreeView.custom
--- gtk/TreeView.custom	21 Sep 2002 21:20:54 -0000	1.3
+++ gtk/TreeView.custom	3 Oct 2002 04:54:42 -0000
@@ -24,6 +24,6 @@
 			}
=20
 			set {
-				gtk_tree_view_set_model (value.Handle);
+				gtk_tree_view_set_model (Handle, value.Handle);
 			}
 		}

--=-fhykPU4JYYXrM+KJhIP2--