From 58b580c26f2261d856e0957cb93f554082b5d0af Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Wed, 5 Nov 2003 21:25:32 +0000 Subject: [PATCH] 2003-11-04 Mike Kestner * gtk/TreeNodeAttribute.cs : sealed per Ben Maurer's suggestion. * gtk/TreeNodeValueAttribute.cs : ditto svn path=/trunk/gtk-sharp/; revision=19648 --- ChangeLog | 5 +++++ gtk/TreeNodeAttribute.cs | 2 +- gtk/TreeNodeValueAttribute.cs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2e748d53f..7037c7dcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-11-04 Mike Kestner + + * gtk/TreeNodeAttribute.cs : sealed per Ben Maurer's suggestion. + * gtk/TreeNodeValueAttribute.cs : ditto + 2003-11-04 Mike Kestner * glib/Value.cs : add set to Val prop diff --git a/gtk/TreeNodeAttribute.cs b/gtk/TreeNodeAttribute.cs index a93308552..4344c001a 100644 --- a/gtk/TreeNodeAttribute.cs +++ b/gtk/TreeNodeAttribute.cs @@ -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 { diff --git a/gtk/TreeNodeValueAttribute.cs b/gtk/TreeNodeValueAttribute.cs index 4bc2ec9ea..ff0db3d44 100644 --- a/gtk/TreeNodeValueAttribute.cs +++ b/gtk/TreeNodeValueAttribute.cs @@ -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 {