You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Build from source and run.
What is the expected output? What do you see instead?
Throws exception.
What version of the product are you using? On what operating system?
Current source as of 1/25/09. Windows XP
Please provide any additional information below.
Current version built from source can not find config.xml on windows XP.
Line 28 of KeyTranslator.java throws an exception because there is a
missing separator between the basePath and sPath. I have modified the line
to include one in my build:
this.myDoc = builder.parse( new File(AppFrame.basePath+"/"+sPath) );
Original issue reported on code.google.com by Chet.Bri...@gmail.com on 25 Jan 2010 at 5:10
The text was updated successfully, but these errors were encountered:
I have the fix for this.
AppFrame.java: Line 76 should be
basePath = System.getProperty("user.dir") + "\\res\\";
instead of
basePath = System.getProperty("user.dir");
I would commit if I could :).
Original comment by nicolas....@gmail.com on 27 Feb 2010 at 6:39
Original issue reported on code.google.com by
Chet.Bri...@gmail.com
on 25 Jan 2010 at 5:10The text was updated successfully, but these errors were encountered: