From 5fa0950112cae67fd3d8d2fcc4c1d625aeb39f6d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 19 Jul 2014 23:36:11 -0400 Subject: [PATCH] Verified that Window.Close() works as documented on GTK+. --- redo/window.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/window.go b/redo/window.go index 2494406..b138a48 100644 --- a/redo/window.go +++ b/redo/window.go @@ -21,7 +21,7 @@ type Window interface { // Any Controls within the Window are destroyed, and the Window itself is also destroyed. // Attempting to use a Window after it has been closed results in undefined behavior. // Close unconditionally closes the Window; it neither raises OnClosing nor checks for a return from OnClosing. - // TODO make sure the above happens on GTK+ and Mac OS X; it does on Windows + // TODO make sure the above happens on Mac OS X; it does on Windows and GTK+ Close() // OnClosing registers an event handler that is triggered when the user clicks the Window's close button.