From: <aki...@us...> - 2006-12-17 15:29:22
|
Revision: 1145 http://svn.sourceforge.net/gridarta/?rev=1145&view=rev Author: akirschbaum Date: 2006-12-17 07:29:22 -0800 (Sun, 17 Dec 2006) Log Message: ----------- Remove redundant package qualifier. Modified Paths: -------------- trunk/crossfire/src/cfeditor/CFTreasureListTree.java Modified: trunk/crossfire/src/cfeditor/CFTreasureListTree.java =================================================================== --- trunk/crossfire/src/cfeditor/CFTreasureListTree.java 2006-12-17 15:25:30 UTC (rev 1144) +++ trunk/crossfire/src/cfeditor/CFTreasureListTree.java 2006-12-17 15:29:22 UTC (rev 1145) @@ -854,12 +854,12 @@ */ public TreasureCellRenderer() { // get icons - tlistIcon = cfeditor.CGUIUtils.getSysIcon(IGUIConstants.TILE_TREASURE); - tlistOneIcon = cfeditor.CGUIUtils.getSysIcon(IGUIConstants.TILE_TREASUREONE); - yesIcon = cfeditor.CGUIUtils.getSysIcon(IGUIConstants.TILE_TR_YES); - noIcon = cfeditor.CGUIUtils.getSysIcon(IGUIConstants.TILE_TR_NO); - noface = cfeditor.CGUIUtils.getSysIcon(IGUIConstants.TILE_NOFACE); - noarch = cfeditor.CGUIUtils.getSysIcon(IGUIConstants.TILE_NOARCH); + tlistIcon = CGUIUtils.getSysIcon(IGUIConstants.TILE_TREASURE); + tlistOneIcon = CGUIUtils.getSysIcon(IGUIConstants.TILE_TREASUREONE); + yesIcon = CGUIUtils.getSysIcon(IGUIConstants.TILE_TR_YES); + noIcon = CGUIUtils.getSysIcon(IGUIConstants.TILE_TR_NO); + noface = CGUIUtils.getSysIcon(IGUIConstants.TILE_NOFACE); + noarch = CGUIUtils.getSysIcon(IGUIConstants.TILE_NOARCH); } /** {@inheritDoc} */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |