Static command target
| 203 | |
| 204 | // Static command target |
| 205 | void ConversationDialog::ShowDialog(const cmd::ArgumentList& args) |
| 206 | { |
| 207 | // Construct a new instance, this enters the main loop |
| 208 | ConversationDialog* editor = new ConversationDialog; |
| 209 | |
| 210 | editor->ShowModal(); |
| 211 | editor->Destroy(); |
| 212 | } |
| 213 | |
| 214 | void ConversationDialog::updateConversationPanelSensitivity() |
| 215 | { |