more working on changes to the build/run system

This commit is contained in:
benfry
2004-01-19 19:14:11 +00:00
parent 69b3e164f8
commit ceae543089
4 changed files with 263 additions and 184 deletions

View File

@@ -73,7 +73,7 @@ public class PdeRuntime implements PdeMessageConsumer {
public void start(Point windowLocation, PrintStream leechErr)
throws PdeException {
this.leechErr = leechErr;
this.leechErr = new PrintStream(new PdeMessageStream(this));
Point parentLoc = editor.getLocation();
Insets parentInsets = editor.getInsets();
@@ -85,7 +85,7 @@ public class PdeRuntime implements PdeMessageConsumer {
if (externalRuntime) {
String command[] = new String[] {
"java",
"-Djava.library.path=" + libraryPath,
"-Djava.library.path=" + libraryPath, // might be ""
"-cp",
classPath,
"BApplet",