diff options
Diffstat (limited to 'redo/table_windows.go')
| -rw-r--r-- | redo/table_windows.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redo/table_windows.go b/redo/table_windows.go index c3e0453..1453407 100644 --- a/redo/table_windows.go +++ b/redo/table_windows.go @@ -12,13 +12,13 @@ import ( import "C" type table struct { - *widgetbase + *controlbase *tablebase } func finishNewTable(b *tablebase, ty reflect.Type) Table { t := &table{ - widgetbase: newWidget(C.xWC_LISTVIEW, + controlbase: newControl(C.xWC_LISTVIEW, C.LVS_REPORT | C.LVS_OWNERDATA | C.LVS_NOSORTHEADER | C.LVS_SHOWSELALWAYS | C.WS_HSCROLL | C.WS_VSCROLL, C.WS_EX_CLIENTEDGE), // WS_EX_CLIENTEDGE without WS_BORDER will show the canonical visual styles border (thanks to MindChild in irc.efnet.net/#winprog) tablebase: b, |
