| 306 | } |
| 307 | |
| 308 | void Window::SetChecked(bool state) { |
| 309 | Button_SetCheck(handle_, state ? BST_CHECKED : BST_UNCHECKED); |
| 310 | } |
| 311 | |
| 312 | void Window::AddString(const std::wstring& str) { |
| 313 | SNDMSG(handle_, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(str.c_str())); |
no outgoing calls
no test coverage detected