Changes in src/Actions/ActionRegistry.cpp [e5f61ba:066442]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionRegistry.cpp
re5f61ba r066442 91 91 MakroAction * presentAction = 92 92 dynamic_cast<MakroAction *>(getActionByName("subgraph-dissection")); 93 ASSERT( presentAction != NULL, 94 "ActionRegistry::fillRegistry() - makro action has not been registered."); 95 presentAction->unprepare(*this); 96 } 97 { 98 MakroAction * presentAction = 99 dynamic_cast<MakroAction *>(getActionByName("translate-molecules")); 93 100 ASSERT( presentAction != NULL, 94 101 "ActionRegistry::fillRegistry() - makro action has not been registered."); … … 136 143 MakroAction * presentAction = 137 144 dynamic_cast<MakroAction *>(getActionByName("optimize-structure")); 145 ASSERT( presentAction != NULL, 146 "ActionRegistry::fillRegistry() - makro action has not been registered."); 147 presentAction->prepare(*this); 148 } 149 { 150 MakroAction * presentAction = 151 dynamic_cast<MakroAction *>(getActionByName("translate-molecules")); 138 152 ASSERT( presentAction != NULL, 139 153 "ActionRegistry::fillRegistry() - makro action has not been registered.");
Note:
See TracChangeset
for help on using the changeset viewer.