2002-07-24 Mike Kestner <mkestner@speakeasy.net>
* generator/SignalHandler.cs : use ref parameters in signal cb's. svn path=/trunk/gtk-sharp/; revision=6136
This commit is contained in:
parent
960dbb8c7a
commit
ccfec8b7e2
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-07-24 Mike Kestner <mkestner@speakeasy.net>
|
||||
|
||||
* generator/SignalHandler.cs : use ref parameters in signal cb's.
|
||||
|
||||
2002-07-24 Alp Toker <alp@atoker.com>
|
||||
|
||||
* gtk/Makefile.in etc. : reference the newly compiled assemblies
|
||||
|
|
|
@ -65,6 +65,9 @@ namespace GtkSharp.Generation {
|
|||
if (pcnt > 0) {
|
||||
pinv += ", ";
|
||||
}
|
||||
|
||||
if (SymbolTable.IsStruct(type))
|
||||
pinv += "ref ";
|
||||
pinv += (ptype + " arg" + pcnt);
|
||||
parms.Add(type);
|
||||
if (SymbolTable.IsObject(type)) {
|
||||
|
|
Loading…
Reference in a new issue