diff --git a/ChangeLog b/ChangeLog index e3952a2a0..f94f1b751 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-06-19 Mike Kestner + + * generator/Parameters.cs : csc build error fixes + 2002-06-14 Rachel Hestilow * glib/GException.cs: Added. diff --git a/generator/Parameters.cs b/generator/Parameters.cs index 6c06cfb97..7a533d4fe 100644 --- a/generator/Parameters.cs +++ b/generator/Parameters.cs @@ -107,7 +107,7 @@ namespace GtkSharp.Generation { public void Initialize (StreamWriter sw, bool is_get) { - string name; + string name = ""; foreach (XmlNode parm in elem.ChildNodes) { if (parm.Name != "parameter") { continue; @@ -140,7 +140,7 @@ namespace GtkSharp.Generation { public bool IsAccessor { get { int length = 0; - string pass_as; + string pass_as = ""; foreach (XmlNode parm in elem.ChildNodes) { if (parm.Name != "parameter") { continue; @@ -160,7 +160,6 @@ namespace GtkSharp.Generation { public bool ThrowsException { get { - int i = 0; XmlNode last_parm = null; foreach (XmlNode parm in elem.ChildNodes) { if (parm.Name != "parameter") {