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: 96c866eb37129d5d724698605f5232724c519e59 (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