2003-12-16 Joe Shaw <joe@ximian.com>

* generator/SymbolTable.cs (MangleName): Add "lock" and "callback"
	to the list of names that need to be mangled.  The former is a C#
	reserved keyword and the latter is already used as an argument to
	methods which marshal callbacks.

svn path=/trunk/gtk-sharp/; revision=21276
This commit is contained in:
Joe Shaw 2003-12-17 15:27:34 +00:00
parent ff263164e3
commit 0925be2387
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2003-12-16 Joe Shaw <joe@ximian.com>
* generator/SymbolTable.cs (MangleName): Add "lock" and "callback"
to the list of names that need to be mangled. The former is a C#
reserved keyword and the latter is already used as an argument to
methods which marshal callbacks.
2003-12-15 Mike Kestner <mkestner@ximian.com>
* generator/BoxedGen.cs : s/uint/GLib.GType

View File

@ -318,6 +318,10 @@ namespace GtkSharp.Generation {
return "_new";
case "base":
return "_base";
case "lock":
return "_lock";
case "callback":
return "cb";
default:
break;
}