2003-11-04 Mike Kestner <mkestner@ximian.com>

* gtk/TreeNodeAttribute.cs : sealed per Ben Maurer's suggestion.
	* gtk/TreeNodeValueAttribute.cs : ditto

svn path=/trunk/gtk-sharp/; revision=19648
This commit is contained in:
Mike Kestner 2003-11-05 21:25:32 +00:00
parent f844057a89
commit 58b580c26f
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-11-04 Mike Kestner <mkestner@ximian.com>
* gtk/TreeNodeAttribute.cs : sealed per Ben Maurer's suggestion.
* gtk/TreeNodeValueAttribute.cs : ditto
2003-11-04 Mike Kestner <mkestner@ximian.com>
* glib/Value.cs : add set to Val prop

View File

@ -9,7 +9,7 @@ namespace Gtk {
using System;
[AttributeUsage(AttributeTargets.Class)]
public class TreeNodeAttribute : Attribute {
public sealed class TreeNodeAttribute : Attribute {
int col_count;
public int ColumnCount {

View File

@ -9,7 +9,7 @@ namespace Gtk {
using System;
[AttributeUsage(AttributeTargets.Property)]
public class TreeNodeValueAttribute : Attribute {
public sealed class TreeNodeValueAttribute : Attribute {
int col;
public int Column {