Changeset 10:2161795feba3 for app/src/processing/app/Base.java
- Timestamp:
- 02/09/10 23:41:28 (7 months ago)
- Branch:
- default
- Files:
-
- 1 modified
-
app/src/processing/app/Base.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
app/src/processing/app/Base.java
r1 r10 250 250 // Get paths for the libraries and examples in the Processing folder 251 251 //String workingDirectory = System.getProperty("user.dir"); 252 examplesFolder = getContentFile( "examples");252 examplesFolder = getContentFile(_("examples")); 253 253 librariesFolder = getContentFile("libraries"); 254 254 toolsFolder = getContentFile("tools"); … … 1741 1741 1742 1742 static public void showReference(String filename) { 1743 File referenceFolder = Base.getContentFile( "reference");1743 File referenceFolder = Base.getContentFile(_("reference")); 1744 1744 File referenceFile = new File(referenceFolder, filename); 1745 1745 openURL(referenceFile.getAbsolutePath());