| 188 | } |
| 189 | |
| 190 | int ConversationDialog::ShowModal() |
| 191 | { |
| 192 | populateWidgets(); |
| 193 | |
| 194 | int returnCode = DialogBase::ShowModal(); |
| 195 | |
| 196 | if (returnCode == wxID_OK) |
| 197 | { |
| 198 | save(); |
| 199 | } |
| 200 | |
| 201 | return returnCode; |
| 202 | } |
| 203 | |
| 204 | // Static command target |
| 205 | void ConversationDialog::ShowDialog(const cmd::ArgumentList& args) |
no outgoing calls
no test coverage detected