From d5e5c13a1f44d1acce4f9b41e2b7e7e3107fb188 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Mon, 28 Apr 2008 18:52:49 +0000 Subject: [PATCH] 2008-04-28 Mike Kestner * glib/GType.cs : Add a few missing static fields. svn path=/trunk/gtk-sharp/; revision=102063 --- ChangeLog | 4 ++++ glib/GType.cs | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7a79c51f6..b2d64d467 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-04-28 Mike Kestner + + * glib/GType.cs : Add a few missing static fields. + 2008-04-24 Mike Kestner * gdk/Window.custom (Destroy): take a normal ref for the native diff --git a/glib/GType.cs b/glib/GType.cs index 36e505987..71d882143 100755 --- a/glib/GType.cs +++ b/glib/GType.cs @@ -45,6 +45,8 @@ namespace GLib { public static readonly GType Boolean = new GType ((IntPtr) TypeFundamentals.TypeBoolean); public static readonly GType Int = new GType ((IntPtr) TypeFundamentals.TypeInt); public static readonly GType UInt = new GType ((IntPtr) TypeFundamentals.TypeUInt); + public static readonly GType Long = new GType ((IntPtr) TypeFundamentals.TypeLong); + public static readonly GType ULong = new GType ((IntPtr) TypeFundamentals.TypeULong); public static readonly GType Int64 = new GType ((IntPtr) TypeFundamentals.TypeInt64); public static readonly GType UInt64 = new GType ((IntPtr) TypeFundamentals.TypeUInt64); public static readonly GType Enum = new GType ((IntPtr) TypeFundamentals.TypeEnum); @@ -54,6 +56,7 @@ namespace GLib { public static readonly GType String = new GType ((IntPtr) TypeFundamentals.TypeString); public static readonly GType Pointer = new GType ((IntPtr) TypeFundamentals.TypePointer); public static readonly GType Boxed = new GType ((IntPtr) TypeFundamentals.TypeBoxed); + public static readonly GType Param = new GType ((IntPtr) TypeFundamentals.TypeParam); public static readonly GType Object = new GType ((IntPtr) TypeFundamentals.TypeObject); static Hashtable types = new Hashtable ();