From: Erik V. <ev...@us...> - 2010-06-25 20:47:53
|
Update of /cvsroot/rails/18xx/rails/ui/swing In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv1611/rails/ui/swing Modified Files: UpgradesPanel.java Log Message: Replaced # by () to indicate number of available tiles in the upgrades panel Index: UpgradesPanel.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/ui/swing/UpgradesPanel.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** UpgradesPanel.java 30 May 2010 10:42:39 -0000 1.28 --- UpgradesPanel.java 25 Jun 2010 20:47:45 -0000 1.29 *************** *** 498,502 **** text.append("<HTML><BODY>" + tile.getExternalId()); if (tile.countFreeTiles() != -1) { ! text.append("<BR> #" + tile.countFreeTiles()); } text.append("</BODY></HTML>"); --- 498,502 ---- text.append("<HTML><BODY>" + tile.getExternalId()); if (tile.countFreeTiles() != -1) { ! text.append("<BR> (" + tile.countFreeTiles() + ")"); } text.append("</BODY></HTML>"); |