diff --git a/ChangeLog b/ChangeLog index abd9f0024..743b90dcb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-02-11 Dan Winship + + * generator/MethodBase.cs (Validate): use CName rather than always + saying "in ctor" + 2005-02-10 Jeroen Zwartepoorte * sample/Actions.cs: Remove obsolete & unsafe GLib.Object.Data usage. diff --git a/generator/MethodBase.cs b/generator/MethodBase.cs index d65729251..e8cb38754 100644 --- a/generator/MethodBase.cs +++ b/generator/MethodBase.cs @@ -118,7 +118,7 @@ namespace GtkSharp.Generation { public virtual bool Validate () { if (!parms.Validate ()) { - Console.Write("in ctor "); + Console.Write("in " + CName + " "); Statistics.ThrottledCount++; return false; }