mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:25:32 +00:00
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:
parent
f844057a89
commit
58b580c26f
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue