(enabled bool)
| 103 | } |
| 104 | |
| 105 | func (tw *TabWidget) applyEnabled(enabled bool) { |
| 106 | tw.WidgetBase.applyEnabled(enabled) |
| 107 | |
| 108 | setWindowEnabled(tw.hWndTab, enabled) |
| 109 | |
| 110 | applyEnabledToDescendants(tw, enabled) |
| 111 | } |
| 112 | |
| 113 | func (tw *TabWidget) applyFont(font *Font) { |
| 114 | tw.WidgetBase.applyFont(font) |
nothing calls this directly
no test coverage detected