| 182 | } |
| 183 | |
| 184 | INT_PTR BaseDialog::ShowModalDialog() |
| 185 | { |
| 186 | /* Explicitly disallow the creation of another |
| 187 | dialog from this object while a modeless dialog |
| 188 | is been shown. */ |
| 189 | if (m_bShowingModelessDialog) |
| 190 | { |
| 191 | return -1; |
| 192 | } |
| 193 | |
| 194 | return DialogBoxParam(m_hInstance, MAKEINTRESOURCE(m_iResource), m_hParent, BaseDialogProcStub, |
| 195 | reinterpret_cast<LPARAM>(this)); |
| 196 | } |
| 197 | |
| 198 | HWND BaseDialog::ShowModelessDialog(IModelessDialogNotification *pmdn) |
| 199 | { |
no outgoing calls
no test coverage detected