Can't Receive Events

Hi,
I have a window with a form. When I leave the form, a view should be repainted for showing the new data form the window. The window get’s closed with removeWindow(window) from the current UI. So the windowClose-event is fired.

public class ProduktKatalogPresenter implements Serializable, Presenter, Window.CloseListener {

… do some stuff

@Override
public void windowClose(CloseEvent e) {
… do some stuff
}
}

But this object never receives a windowsClose-Event.

What is wrong?

Thank You for help
Bernhard

Have you registered ProduktKatalogPresenter as a listener to the window?