summaryrefslogtreecommitdiff
path: root/sysdata_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-03 15:44:46 -0500
committerPietro Gagliardi <[email protected]>2014-03-03 15:44:46 -0500
commit4923f3944c7384012ab3fa9d0e96a7b2baaa687f (patch)
tree851ae022a6ca7df8c05cdd503e61ff3cb796076b /sysdata_unix.go
parente4c70b2b159db79a80d8f6a6388d1c70c096e4e3 (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.go8
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() {