| 110 | } |
| 111 | |
| 112 | void EditorState::updateCaption() |
| 113 | { |
| 114 | MyGUI::UString tag; |
| 115 | if (ActionManager::getInstance().getChanges()) |
| 116 | tag = "*"; |
| 117 | addUserTag("HasChanged", tag); |
| 118 | |
| 119 | CommandManager::getInstance().executeCommand("Command_UpdateAppCaption"); |
| 120 | } |
| 121 | |
| 122 | void EditorState::commandLoad(const MyGUI::UString& _commandName, bool& _result) |
| 123 | { |
nothing calls this directly
no test coverage detected