export pkguiDoColorButtonOnChanged
(bb *C.uiColorButton, data unsafe.Pointer)
| 55 | |
| 56 | //export pkguiDoColorButtonOnChanged |
| 57 | func pkguiDoColorButtonOnChanged(bb *C.uiColorButton, data unsafe.Pointer) { |
| 58 | b := ControlFromLibui(uintptr(unsafe.Pointer(bb))).(*ColorButton) |
| 59 | if b.onChanged != nil { |
| 60 | b.onChanged(b) |
| 61 | } |
| 62 | } |
nothing calls this directly
no test coverage detected