* generator/MethodBase.cs (Validate): use CName rather than always

saying "in ctor"

svn path=/trunk/gtk-sharp/; revision=40475
This commit is contained in:
Dan Winship 2005-02-11 15:07:22 +00:00
parent 2bb68283d2
commit 053248d566
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-02-11 Dan Winship <danw@novell.com>
* generator/MethodBase.cs (Validate): use CName rather than always
saying "in ctor"
2005-02-10 Jeroen Zwartepoorte <jeroen@xs4all.nl>
* sample/Actions.cs: Remove obsolete & unsafe GLib.Object.Data usage.

View File

@ -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;
}