Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionRegistry.cpp

    re5f61ba r066442  
    9191    MakroAction * presentAction =
    9292        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"));
    93100    ASSERT( presentAction != NULL,
    94101        "ActionRegistry::fillRegistry() - makro action has not been registered.");
     
    136143    MakroAction * presentAction =
    137144        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"));
    138152    ASSERT( presentAction != NULL,
    139153        "ActionRegistry::fillRegistry() - makro action has not been registered.");
Note: See TracChangeset for help on using the changeset viewer.