summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-30 23:48:08 -0400
committerPietro Gagliardi <[email protected]>2014-06-30 23:48:08 -0400
commit3565889e15e387fce435c3ffadeaea9823fb2eed (patch)
tree93cf5de89c9010fc16da37949d441d97e3386f89 /sysdata.go
parentffa1bbe0b91a8c812ddcea5c5d65e55f60d07f33 (diff)
Made Window.Closing a callback closure.
Diffstat (limited to 'sysdata.go')
-rw-r--r--sysdata.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdata.go b/sysdata.go
index 9144517..9ff6ee9 100644
--- a/sysdata.go
+++ b/sysdata.go
@@ -10,7 +10,7 @@ type cSysData struct {
alternate bool // editable for Combobox, multi-select for listbox, password for lineedit
handler AreaHandler // for Areas; TODO rename to areahandler
winhandler WindowHandler // for Windows
- close func(*bool) // provided by each Window
+ close func() bool // provided by each Window
event func() // provided by each control
}