diff --git a/ChangeLog b/ChangeLog index 3f089ad79..34324618d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-07-19 Mike Kestner + + * generator/StructGen.cs : comment out GenField. It's broke. + * sample/ButtonApp.cs : revert the EventAny WriteLine. + 2002-07-19 Mike Kestner * parser/gapi2xml.pl : mark privately defined structs opaque. diff --git a/generator/StructGen.cs b/generator/StructGen.cs index 616f3e6b8..8e36d0986 100644 --- a/generator/StructGen.cs +++ b/generator/StructGen.cs @@ -54,8 +54,8 @@ namespace GtkSharp.Generation { switch (node.Name) { case "field": - // Statistics.IgnoreCount++; - GenField(member, sw); + Statistics.IgnoreCount++; + // GenField(member, sw); break; case "callback": diff --git a/sample/ButtonApp.cs b/sample/ButtonApp.cs index e5da2d60c..14a543c13 100755 --- a/sample/ButtonApp.cs +++ b/sample/ButtonApp.cs @@ -34,7 +34,6 @@ namespace GtkSamples { static void Window_Delete (object obj, DeleteEventArgs args) { - Console.WriteLine(args.Event); Application.Quit (); args.RetVal = true; }