summaryrefslogtreecommitdiff
path: root/table_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-02-18 03:40:47 -0500
committerPietro Gagliardi <[email protected]>2015-02-18 03:40:47 -0500
commit8730cbf1c4acf658213c362c6f6bd86a7816355c (patch)
tree21bbae33cb7d2e9e435708885d5a440c30754ba5 /table_windows.go
parent9f8ae4051603d4d1bab02465c9662236644bb83d (diff)
"Fixed" the other Windows Table problem. Now to implement selection and fix the fonts...
Diffstat (limited to 'table_windows.go')
-rw-r--r--table_windows.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/table_windows.go b/table_windows.go
index 3b8d3dc..362a49b 100644
--- a/table_windows.go
+++ b/table_windows.go
@@ -90,7 +90,6 @@ func tableGetCell(data unsafe.Pointer, tnm *C.tableNM) C.LRESULT {
t.RLock()
defer t.RUnlock()
d := reflect.Indirect(reflect.ValueOf(t.data))
-fmt.Printf("%#v\n", *tnm)
datum := d.Index(int(tnm.row)).Field(int(tnm.column))
switch {
case datum.Type() == reflect.TypeOf((*image.RGBA)(nil)):