| 418 | // --- Builder implementation --- |
| 419 | |
| 420 | TextInputDialog::Builder::Builder(HWND parent, PCWSTR title, PCWSTR prompt) |
| 421 | : m_parent(parent), m_title(title), m_prompt(prompt) |
| 422 | { |
| 423 | } |
| 424 | |
| 425 | TextInputDialog::Builder& TextInputDialog::Builder::AddCheckBoxGroup( |
| 426 | const std::wstring& groupLabel, std::vector<CheckBoxOption> options) |
nothing calls this directly
no outgoing calls
no test coverage detected