diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-03 15:44:46 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-03 15:44:46 -0500 |
| commit | 4923f3944c7384012ab3fa9d0e96a7b2baaa687f (patch) | |
| tree | 851ae022a6ca7df8c05cdd503e61ff3cb796076b /sysdata_unix.go | |
| parent | e4c70b2b159db79a80d8f6a6388d1c70c096e4e3 (diff) | |
Removed crash guards from the Mac OS X sysData code. Also removed some leftover ones from the GTK+ code.
Diffstat (limited to 'sysdata_unix.go')
| -rw-r--r-- | sysdata_unix.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sysdata_unix.go b/sysdata_unix.go index 0852362..f309729 100644 --- a/sysdata_unix.go +++ b/sysdata_unix.go @@ -114,14 +114,6 @@ var classTypes = [nctypes]*classData{ func (s *sysData) make(initText string, window *sysData) error { ct := classTypes[s.ctype] - if ct.make == nil { // not yet implemented - println(s.ctype, "not implemented") - return nil - } - if s.alternate && ct.makeAlt == nil { // not yet implemented - println(s.ctype, "alt not implemented") - return nil - } ret := make(chan *gtkWidget) defer close(ret) uitask <- func() { |
