This commit is contained in:
basti 2020-12-18 09:33:48 +01:00
parent 0e8673fe4f
commit 0d5b0ee189

View file

@ -146,7 +146,14 @@ public class ListUI extends JFrame implements Runnable{
contentPane.add(nameLabel);
this.addWindowListener(new java.awt.event.WindowAdapter() {
@Override
public void windowClosing(java.awt.event.WindowEvent windowEvent) {
ListUI window = (ListUI) windowEvent.getSource();
GestionnaireNom.instance().supprimer2(); //TODO enlever 2 //debug
}
});
}