(enabled bool)
| 91 | } |
| 92 | |
| 93 | func (s *static) applyEnabled(enabled bool) { |
| 94 | s.WidgetBase.applyEnabled(enabled) |
| 95 | |
| 96 | setWindowEnabled(s.hwndStatic, enabled) |
| 97 | } |
| 98 | |
| 99 | func (s *static) applyFont(font *Font) { |
| 100 | s.WidgetBase.applyFont(font) |
nothing calls this directly
no test coverage detected