127128129130131132133134135136137
if (c != null) { Point p = c.getLocation(); p.x = p.x + c.getWidth(); window.setLocation(p); } window.makeVisible(); } }; helpClick = new ActionListener() { @Override public void actionPerformed(ActionEvent e) {
145146147148149150151152153154155
if (c != null) { Point p = c.getLocation(); p.x = p.x + c.getWidth(); window.setLocation(p); } window.makeVisible(); } }; } private void ButtonSetup() {