Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/XyzParser.cpp

    r86cff86 rdf481f  
    5959  if (comment == "") {
    6060    time_t now = time((time_t *)NULL);   // Get the system time and put it into 'now' as 'calender time'
    61     comment = "Created by molecuilder on ";
     61    comment = "\tCreated by molecuilder on ";
    6262    // ctime ends in \n\0, we have to cut away the newline
    6363    std::string time(ctime(&now));
     
    6868      comment += time;
    6969  }
    70   *file << World::getInstance().numAtoms() << endl << "\t" << comment << endl;
     70  *file << World::getInstance().numAtoms() << endl << comment << endl;
    7171
    7272  vector<atom*> atoms = World::getInstance().getAllAtoms();
Note: See TracChangeset for help on using the changeset viewer.