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