Revision: 627 http://cishell.svn.sourceforge.net/cishell/?rev=627&view=rev Author: mwlinnem Date: 2008-02-21 06:20:45 -0800 (Thu, 21 Feb 2008) Log Message: ----------- Directories will now be correct on Windows, but not on Linux or Mac (will make it work for both in a second, after some testing). 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-02-16 01:19:53 UTC (rev 626) +++ trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/src/org/cishell/reference/gui/guibuilder/swt/builder/components/FileComponent.java 2008-02-21 14:20:45 UTC (rev 627) @@ -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. |