From 64e7ad9f3093203904742036f5f2d44be94b8c72 Mon Sep 17 00:00:00 2001 From: Martin Willemoes Hansen Date: Thu, 22 Jan 2004 11:27:29 +0000 Subject: [PATCH] * generator/Ctor.cs: Warnings was output like "ctor" fixed to output like "in ctor", like the rest of the warnings. svn path=/trunk/gtk-sharp/; revision=22394 --- ChangeLog | 5 +++++ generator/Ctor.cs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 08b8e916e..84f54d12a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-01-22 Martin Willemoes Hansen + + * generator/Ctor.cs: Warnings was output like "ctor" fixed to + output like "in ctor", like the rest of the warnings. + 2004-01-21 John Luke * vte/Makefile.in: fix so you can build from scratch diff --git a/generator/Ctor.cs b/generator/Ctor.cs index 69efe69c1..71d75a7a8 100644 --- a/generator/Ctor.cs +++ b/generator/Ctor.cs @@ -53,7 +53,7 @@ namespace GtkSharp.Generation { { if (parms != null) { if (!parms.Validate ()) { - Console.Write("ctor "); + Console.Write("in ctor "); Statistics.ThrottledCount++; return false; }