|
From: Nathaniel G. A. <nat...@us...> - 2004-05-25 01:04:19
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/designer/common/font In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3969/src/java/org/krysalis/jcharts/designer/common/font Modified Files: StylesCombo.java FontChooser.java Log Message: Index: FontChooser.java =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/designer/common/font/FontChooser.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FontChooser.java 9 Aug 2003 17:04:56 -0000 1.1 --- FontChooser.java 25 May 2004 01:04:08 -0000 1.2 *************** *** 51,55 **** this.add( this.fontCombo ); ! this.size= new LabelledTextfield( "Size:" ); this.add( this.size ); --- 51,56 ---- this.add( this.fontCombo ); ! this.size= new LabelledTextfield( "Size:", 3 ); ! this.size.setText( "12" ); this.add( this.size ); *************** *** 67,71 **** if( this.size.getText().trim().equals( "" ) ) { ! throw new DesignerException( this.title + " can not be NULL." ); } --- 68,72 ---- if( this.size.getText().trim().equals( "" ) ) { ! throw new DesignerException( "Title Font size can not be NULL." ); } Index: StylesCombo.java =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/designer/common/font/StylesCombo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StylesCombo.java 9 Aug 2003 17:04:56 -0000 1.1 --- StylesCombo.java 25 May 2004 01:04:07 -0000 1.2 *************** *** 50,54 **** static { ! ALL_STYLES= new String[]{ "BOLD", "ITALIC", "PLAIN" }; } --- 50,54 ---- static { ! ALL_STYLES= new String[]{ "PLAIN", "BOLD", "ITALIC" }; } |