removal of PdeBase.frame and switching PdeBase to a JFrame

This commit is contained in:
benfry
2003-08-05 01:55:17 +00:00
parent 6966de1a49
commit dc03221667
3 changed files with 45 additions and 24 deletions

View File

@@ -58,9 +58,9 @@ public class PdeRuntime implements PdeMessageConsumer {
this.leechErr = leechErr;
Frame frame = PdeBase.frame;
Point parentLoc = frame.getLocation();
Insets parentInsets = frame.getInsets();
//Frame frame = PdeBase.frame;
Point parentLoc = editor.base.getLocation(); //frame.getLocation();
Insets parentInsets = editor.base.getInsets(); //frame.getInsets();
int x1 = parentLoc.x - 20;
int y1 = parentLoc.y;