export pkguiDoFontButtonOnChanged
(bb *C.uiFontButton, data unsafe.Pointer)
| 49 | |
| 50 | //export pkguiDoFontButtonOnChanged |
| 51 | func pkguiDoFontButtonOnChanged(bb *C.uiFontButton, data unsafe.Pointer) { |
| 52 | b := ControlFromLibui(uintptr(unsafe.Pointer(bb))).(*FontButton) |
| 53 | if b.onChanged != nil { |
| 54 | b.onChanged(b) |
| 55 | } |
| 56 | } |
nothing calls this directly
no test coverage detected