Changeset 4d2636 for molecuilder/src


Ignore:
Timestamp:
May 8, 2010, 8:06:45 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
536ce2
Parents:
a71ad8
Message:

shortened NAME of ParserLoadXyz and ParserSaveXyz actions, as it is the key in the ActionRegistry.

Signed-off-by: Frederik Heber <heber@…>

Location:
molecuilder/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Actions/ParserAction/LoadXyzAction.cpp

    ra71ad8 r4d2636  
    3434//};
    3535
    36 const char ParserLoadXyzAction::NAME[] = "Load a xyz file into the World";
     36const char ParserLoadXyzAction::NAME[] = "LoadXyz";
    3737
    3838ParserLoadXyzAction::ParserLoadXyzAction() :
  • molecuilder/src/Actions/ParserAction/SaveXyzAction.cpp

    ra71ad8 r4d2636  
    3434//};
    3535
    36 const char ParserSaveXyzAction::NAME[] = "Save a xyz snapshot of the World";
     36const char ParserSaveXyzAction::NAME[] = "SaveXyz";
    3737
    3838ParserSaveXyzAction::ParserSaveXyzAction() :
  • molecuilder/src/Parser/TremoloParser.cpp

    ra71ad8 r4d2636  
    194194    lineStream >> keyword;
    195195    if (knownKeys[keyword.substr(0, keyword.find("="))] == TremoloKey::noKey) {
    196       // throw exception about unknown key
     196      // TODO: throw exception about unknown key
    197197      cout << "Unknown key: " << keyword << " is not part of the tremolo format specification." << endl;
    198198      break;
Note: See TracChangeset for help on using the changeset viewer.