From 5f89b3da2f975bd679931927d95ce6ff7a2f1558 Mon Sep 17 00:00:00 2001
From: Joe Shaw <joe@joeshaw.org>
Date: Tue, 23 Aug 2005 18:36:43 +0000
Subject: [PATCH] 2005-08-23  Joe Shaw  <joeshaw@novell.com>

	* generator/SymbolTable.cs: Add "unsigned" as a type
	which maps to "uint".

svn path=/trunk/gtk-sharp/; revision=48754
---
 ChangeLog                | 3 +++
 generator/SymbolTable.cs | 1 +
 2 files changed, 4 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 6fbdb275d..72fdf2c27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-08-23  Joe Shaw  <joeshaw@novell.com>
 
+	* generator/SymbolTable.cs: Add "unsigned" as a type
+	which maps to "uint".
+
 	* parser/gapi2xml.pl: Handle "type const *" return types
 	as well.  I think this is all of them!
 
diff --git a/generator/SymbolTable.cs b/generator/SymbolTable.cs
index 5d4893eca..f7c39e532 100644
--- a/generator/SymbolTable.cs
+++ b/generator/SymbolTable.cs
@@ -49,6 +49,7 @@ namespace GtkSharp.Generation {
 			AddType (new SimpleGen ("gint", "int"));
 			AddType (new SimpleGen ("guint", "uint"));
 			AddType (new SimpleGen ("int", "int"));
+			AddType (new SimpleGen ("unsigned", "uint"));
 			AddType (new SimpleGen ("unsigned int", "uint"));
 			AddType (new SimpleGen ("unsigned-int", "uint"));
 			AddType (new SimpleGen ("gshort", "short"));