(tool Widget, text string)
| 216 | } |
| 217 | |
| 218 | func (tt *ToolTip) SetText(tool Widget, text string) error { |
| 219 | return tt.setText(tt.hwndForTool(tool), text) |
| 220 | } |
| 221 | |
| 222 | func (tt *ToolTip) setText(hwnd win.HWND, text string) error { |
| 223 | ti := tt.toolInfo(hwnd) |
nothing calls this directly
no test coverage detected