From: Erik V. <ev...@us...> - 2009-11-27 20:32:02
|
Update of /cvsroot/rails/18xx/rails/ui/swing In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8629/rails/ui/swing Modified Files: ORWindow.java Log Message: Changed window title Index: ORWindow.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/ui/swing/ORWindow.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** ORWindow.java 17 Nov 2009 19:31:27 -0000 1.27 --- ORWindow.java 27 Nov 2009 20:31:50 -0000 1.28 *************** *** 153,163 **** public void activate(OperatingRound or) { GameManager gameManager = (GameManager) gameUIManager.getGameManager(); - String compositeORNumber = gameManager.getCompositeORNumber (); String numORs = gameManager.getNumOfORs (); /*if (!or.wasInterrupted())*/ orPanel.recreate(or); setTitle(LocalText.getText("MapWindowORTitle", ! compositeORNumber, ! numORs )); pack(); if (lastBounds != null) { --- 153,163 ---- public void activate(OperatingRound or) { GameManager gameManager = (GameManager) gameUIManager.getGameManager(); String numORs = gameManager.getNumOfORs (); /*if (!or.wasInterrupted())*/ orPanel.recreate(or); setTitle(LocalText.getText("MapWindowORTitle", ! gameManager.getORId(), ! String.valueOf(gameManager.getRelativeORNumber()), ! numORs )); pack(); if (lastBounds != null) { |