[Picross-commit] SF.net SVN: picross: [37] trunk
Status: Pre-Alpha
Brought to you by:
yvan_norsa
From: <yva...@us...> - 2007-06-14 05:59:00
|
Revision: 37 http://picross.svn.sourceforge.net/picross/?rev=37&view=rev Author: yvan_norsa Date: 2007-06-13 22:59:01 -0700 (Wed, 13 Jun 2007) Log Message: ----------- fixed bundleHelper Modified Paths: -------------- trunk/lib/bundleHelper.jar trunk/src/picross/game/GameUI.java trunk/src/picross/game/random/RandomGameUI.java Modified: trunk/lib/bundleHelper.jar =================================================================== (Binary files differ) Modified: trunk/src/picross/game/GameUI.java =================================================================== --- trunk/src/picross/game/GameUI.java 2007-06-13 18:20:44 UTC (rev 36) +++ trunk/src/picross/game/GameUI.java 2007-06-14 05:59:01 UTC (rev 37) @@ -79,8 +79,7 @@ this.infosPanel.setLayout(new BoxLayout(this.infosPanel, BoxLayout.Y_AXIS)); - // FIXME "this" should be usable instead of "Picross.class" - JLabel infos = new JLabel(BundleHelper.getString(Picross.class, + JLabel infos = new JLabel(BundleHelper.getString(this, "gridSize") + " : " + width + "*" + height); this.infosPanel.add(infos); Modified: trunk/src/picross/game/random/RandomGameUI.java =================================================================== --- trunk/src/picross/game/random/RandomGameUI.java 2007-06-13 18:20:44 UTC (rev 36) +++ trunk/src/picross/game/random/RandomGameUI.java 2007-06-14 05:59:01 UTC (rev 37) @@ -70,7 +70,7 @@ super(width, height, grid); JButton nextButton = - new JButton(BundleHelper.getString(Picross.class, "anotherGrid")); + new JButton(BundleHelper.getString(this, "anotherGrid")); nextButton.addActionListener(controller); nextButton.setActionCommand(RandomGameController.NEXT_CMD); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |