Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/builder.cpp

    r097902 r952f38  
    5959#include "CommandLineParser.hpp"
    6060#include "config.hpp"
    61 #include "log.hpp"
     61#include "Helpers/Log.hpp"
    6262#include "molecule.hpp"
    6363#include "periodentafel.hpp"
     
    7272#include "UIElements/Dialog.hpp"
    7373#include "Menu/ActionMenuItem.hpp"
    74 #include "verbose.hpp"
     74#include "Helpers/Verbose.hpp"
    7575#include "World.hpp"
    7676
     
    110110}
    111111
    112 void dumpMemory(){
    113   ofstream ost("molecuilder.memdump");
    114   Memory::dumpMemory(ost);
    115 }
    116 
    117112int main(int argc, char **argv)
    118113{
    119114  // while we are non interactive, we want to abort from asserts
    120   ASSERT_DO(Assert::Abort);
    121   ASSERT_HOOK(dumpMemory);
     115  //ASSERT_DO(Assert::Abort);
    122116  string line;
    123117  char **Arguments = NULL;
     
    133127  // need to init the history before any action is created
    134128  ActionHistory::init();
     129
     130  // In the interactive mode, we can leave the user the choice in case of error
     131  ASSERT_DO(Assert::Ask);
    135132
    136133  // from this moment on, we need to be sure to deeinitialize in the correct order
     
    158155      UIFactory::makeUserInterface("CommandLine");
    159156    } else {
    160       // In the interactive mode, we can leave the user the choice in case of error
    161       ASSERT_DO(Assert::Ask);
    162157      #ifdef USE_GUI_QT
    163158        DoLog(0) && (Log() << Verbose(0) << "Setting UI to QT4." << endl);
Note: See TracChangeset for help on using the changeset viewer.