From d69c90401fc3cf15d2d0e0f177be0bdd2299daf8 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 3 Jun 2014 22:47:49 -0400 Subject: [PATCH] Decided to panic in the hwnd sanity check in sysdata_windows.go; the situation /is/ exceptional, after all (and we need to just get rid of all errors sometime). --- sysdata_windows.go | 1 - 1 file changed, 1 deletion(-) diff --git a/sysdata_windows.go b/sysdata_windows.go index 46cbf56..d41fe58 100644 --- a/sysdata_windows.go +++ b/sysdata_windows.go @@ -187,7 +187,6 @@ func (s *sysData) make(window *sysData) (err error) { if !ct.storeSysData { // regular control; store s.hwnd ourselves s.hwnd = _HWND(r.ret) } else if s.hwnd != _HWND(r.ret) { // we store sysData in storeSysData(); sanity check - // TODO really panic? panic(fmt.Errorf("hwnd mismatch creating window/control: storeSysData() stored 0x%X but CreateWindowEx() returned 0x%X", s.hwnd, ret)) } if !ct.doNotLoadFont {