Imported GNU Classpath 0.19 + gcj-import-20051115.

* sources.am: Regenerated.
       * Makefile.in: Likewise.
       * scripts/makemake.tcl: Use glob -nocomplain.

From-SVN: r107049
This commit is contained in:
Mark Wielaard
2005-11-15 23:20:01 +00:00
parent 02e549bfaa
commit 8f523f3a10
1241 changed files with 97711 additions and 25284 deletions
+9 -2
View File
@@ -392,6 +392,11 @@ Checkbox(String label, boolean state, CheckboxGroup group)
this.label = label;
this.state = state;
this.group = group;
if ( state && group != null )
{
group.setSelectedCheckbox(this);
}
}
/*************************************************************************/
@@ -610,8 +615,10 @@ dispatchEventImpl(AWTEvent e)
protected String
paramString()
{
return ("label=" + label + ",state=" + state + ",group=" + group
+ "," + super.paramString());
// Note: We cannot add the checkbox group information here because this
// would trigger infinite recursion when CheckboxGroup.toString() is
// called and the box is in its selected state.
return ("label=" + label + ",state=" + state + "," + super.paramString());
}
/**