View | Details | Raw Unified | Return to issue 63339
Collapse All | Expand All

(-)org/openoffice/configuration/FileHelper.java (-1 / +1 lines)
Lines 62-68 Link Here
62
		File aFile = new File(sSource);
62
		File aFile = new File(sSource);
63
		
63
		
64
		try {
64
		try {
65
			absPath = aFile.getAbsolutePath();
65
			absPath = "file://" + aFile.getAbsolutePath().replace('\\', '/');
66
		} catch (Exception e)
66
		} catch (Exception e)
67
        {
67
        {
68
            e.printStackTrace();            
68
            e.printStackTrace();            

Return to issue 63339