fixes to the font builder for windows, fixes for mac dist building,

bugs.txt
This commit is contained in:
benfry
2003-09-24 16:02:32 +00:00
parent 9f738e55eb
commit fdf6ef3693
6 changed files with 64 additions and 18 deletions

View File

@@ -1207,7 +1207,14 @@ public class PdeBase extends Frame
String folder = file.getCanonicalPath();
if (platform == WINDOWS) {
Runtime.getRuntime().exec("cmd /c \"" + folder + "\"");
// doesn't work
//Runtime.getRuntime().exec("cmd /c \"" + folder + "\"");
// works fine on winxp, prolly win2k as well
Runtime.getRuntime().exec("explorer \"" + folder + "\"");
// not tested
//Runtime.getRuntime().exec("start explorer \"" + folder + "\"");
#ifdef MACOS
} else if (platform == MACOSX) {