Hi List,

after Upgrading from ULC 6.0.4 to 6.1 my Windowlisteners are no longer
working. Simple exaple:


import com.ulcjava.base.application.ULCDialog;
import com.ulcjava.base.application.event.IWindowListener;
import com.ulcjava.base.application.event.WindowEvent;


public class TestListener extends ULCDialog {

  public TestListener() {
    this.setSize(100, 100);
    this.setResizable(false);
    this.setModal(true);
    this.setLocationRelativeTo(null);
    this.addWindowListener(new IWindowListener() {

      public void windowClosing(WindowEvent arg0) {
        System.out.println("Hello World");
      }
    });
  }
}


Is there something that changed? Is it a bug? Is there a known
workaround?

Thanks in advance,
  Christoph Brill

_______________________________________________
ULC-developer mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/ulc-developer

Reply via email to