changeset 84:ea538711664a

Hello should use dw.MainQuit() not dw.Main_quit().
author Brian Smith <brian@dbsoft.org>
date Fri, 28 Jun 2013 17:27:20 -0500
parents 5da3a9d257a3
children e9b0b18f9360
files src/hello/hello.go
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/hello/hello.go	Mon Apr 29 17:04:59 2013 -0500
+++ b/src/hello/hello.go	Fri Jun 28 17:27:20 2013 -0500
@@ -11,7 +11,7 @@
 func exit_handler(win dw.HWND, message string) int {
     if dw.Messagebox(APP_NAME, dw.MB_YESNO | dw.MB_QUESTION, message) == dw.MB_RETURN_YES {
         /* Exit the application cleanly */
-        dw.Main_quit();
+        dw.MainQuit();
     }
     return dw.TRUE;
 }