| 106 | } |
| 107 | |
| 108 | void EditManager::editorDisabled() |
| 109 | { |
| 110 | for(SimGroupIterator itr(Sim::getRootGroup()); *itr; ++itr) |
| 111 | { |
| 112 | SimObject *so = *itr; |
| 113 | AssertFatal(so->isProperlyAdded() && !so->isRemoved(), "bad"); |
| 114 | so->onEditorDisable(); |
| 115 | } |
| 116 | |
| 117 | gEditingMission = false; |
| 118 | } |
| 119 | |
| 120 | //------------------------------------------------------------------------------ |
| 121 |
no test coverage detected