Revision: 605 http://cishell.svn.sourceforge.net/cishell/?rev=605&view=rev Author: mwlinnem Date: 2008-01-24 12:54:00 -0800 (Thu, 24 Jan 2008) Log Message: ----------- Fixed bug that was cutting off the first '/' in absolute file paths. Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/src/org/cishell/reference/gui/guibuilder/swt/builder/components/FileComponent.java Modified: trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/src/org/cishell/reference/gui/guibuilder/swt/builder/components/FileComponent.java =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/src/org/cishell/reference/gui/guibuilder/swt/builder/components/FileComponent.java 2008-01-24 18:35:08 UTC (rev 604) +++ trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/src/org/cishell/reference/gui/guibuilder/swt/builder/components/FileComponent.java 2008-01-24 20:54:00 UTC (rev 605) @@ -105,7 +105,7 @@ //by default, point to NWB or CIShell application installation directory if (currentValue == null) { - value = System.getProperty("osgi.install.area").replace("file:/",""); + value = System.getProperty("osgi.install.area").replace("file:",""); currentValue = value; } else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |