| 346 | } |
| 347 | |
| 348 | void EditorState::updateCaption() |
| 349 | { |
| 350 | MyGUI::UString tag; |
| 351 | if (UndoManager::getInstance().isUnsaved()) |
| 352 | tag = "*"; |
| 353 | addUserTag("HasChanged", tag); |
| 354 | |
| 355 | CommandManager::getInstance().executeCommand("Command_UpdateAppCaption"); |
| 356 | } |
| 357 | |
| 358 | void EditorState::notifyMessageBoxResultLoad(MyGUI::Message* _sender, MyGUI::MessageBoxStyle _result) |
| 359 | { |
nothing calls this directly
no test coverage detected