From: Thomas J. <fa...@ap...> - 2002-11-05 22:32:11
|
Update of /var/lib/cvs/bWF2/src/taglibs/bWF2Theme In directory apollo:/tmp/cvs-serv30662 Modified Files: Box.java Log Message: handle a not-set width Index: Box.java =================================================================== RCS file: /var/lib/cvs/bWF2/src/taglibs/bWF2Theme/Box.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Box.java 5 Nov 2002 01:02:10 -0000 1.1 +++ Box.java 5 Nov 2002 22:32:03 -0000 1.2 @@ -17,7 +17,7 @@ static Logger log = Logger.getLogger("bWF2Theme-Box"); public void setwidth(String width) { - this.width = width; + this.width = "width=\""+width+"\""; } public void setpart(String part) { |