()
| 109 | } |
| 110 | |
| 111 | func (cb *CheckBox) SaveState() error { |
| 112 | return cb.WriteState(strconv.Itoa(int(cb.CheckState()))) |
| 113 | } |
| 114 | |
| 115 | func (cb *CheckBox) RestoreState() error { |
| 116 | s, err := cb.ReadState() |
nothing calls this directly
no test coverage detected