()
| 32 | } |
| 33 | |
| 34 | func (p *TableTextColumnOptionalParams) toLibui() *C.uiTableTextColumnOptionalParams { |
| 35 | if p == nil { |
| 36 | return nil |
| 37 | } |
| 38 | cp := C.pkguiAllocTableTextColumnOptionalParams() |
| 39 | cp.ColorModelColumn = C.int(p.ColorModelColumn) |
| 40 | return cp |
| 41 | } |
| 42 | |
| 43 | // TableParams defines the parameters passed to NewTable. |
| 44 | type TableParams struct { |
nothing calls this directly
no outgoing calls
no test coverage detected