Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 44974cfc2a0b0d92455bc54925935b5e4158ae89 (plain) (blame)
1
2
3
4
5
6
7
8
/**
 * This hook is called if the window's close button was pressed, the close menu was selected,
 * or the ESCAPE key pressed.
 * The default implementation calls <code>close()</code>.
 */
public void closeBoxPressed() {
	close();
}

Back to the top