[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] Intercept / Abort SWT.Close

Hi

I have a Listener on SWT.close like this

shell.addListener(SWT.Close,new Listener() {
      public void handleEvent (Event event) {
      // I can intercept and put it onhonld with a dialogbox 
      // but what to do here to abort this.
      }      
});

Does anyone have an idea how I can abort the closing process ?

-Sebastian