From 053248d566cd0c04514aaf05549c6c08a80c7b78 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 11 Feb 2005 15:07:22 +0000 Subject: [PATCH] * generator/MethodBase.cs (Validate): use CName rather than always saying "in ctor" svn path=/trunk/gtk-sharp/; revision=40475 --- ChangeLog | 5 +++++ generator/MethodBase.cs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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; }