2002-10-29 Mike Kestner <mkestner@speakeasy.net>

* generator/Signal.cs : Fix namespacing of Args.

svn path=/trunk/gtk-sharp/; revision=8673
This commit is contained in:
Mike Kestner 2002-10-30 05:29:19 +00:00
parent 0042a28287
commit 8a70b31f28
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-10-29 Mike Kestner <mkestner@speakeasy.net>
* generator/Signal.cs : Fix namespacing of Args.
2002-10-27 Mike Kestner <mkestner@speakeasy.net>
* configure.in : bump version to 0.6.

View File

@ -137,7 +137,7 @@ namespace GtkSharp.Generation {
sw.WriteLine ("\t}");
sw.WriteLine ("}");
sw.Close ();
argsname = "GtkSharp." + argsname;
argsname = container_type.NS + "Sharp." + argsname;
return container_type.NS + "Sharp." + handler;
}