Changeset 225 for 06/libkombilo/sgfparser.cpp
- Timestamp:
- 02/24/07 21:33:27 (1 year ago)
- Files:
-
- 06/libkombilo/sgfparser.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
06/libkombilo/sgfparser.cpp
r223 r225 78 78 79 79 void ExtendedMoveNumber::down() throw(SGFError) { 80 if (length==0) throw SGFError(); // FIXME use other error class?80 if (length==0) throw SGFError(); 81 81 else if (length==1) { 82 82 int* newdata = new int[3]; … … 235 235 if (SGFst) { 236 236 SGFstring = SGFst; 237 parseNode(); // FIXME delete this here?!237 // parseNode(); 238 238 } else SGFstring = ""; 239 239 posyD = 0; … … 241 241 242 242 Node::~Node() { 243 // delete data FIXME244 243 } 245 244
