Skip to content

Commit

Permalink
FULLPIPE: Implement MovGraph destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Nov 30, 2016
1 parent 6071d1b commit 80d8674
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion engines/fullpipe/motion.cpp
Expand Up @@ -815,7 +815,13 @@ MovGraph::MovGraph() {
}

MovGraph::~MovGraph() {
warning("STUB: MovGraph::~MovGraph()");
for (ObList::iterator i = _links.begin(); i != _links.end(); ++i)
delete *i;

for (ObList::iterator i = _nodes.begin(); i != _nodes.end(); ++i)
delete *i;

detachAllObjects();
}

bool MovGraph::load(MfcArchive &file) {
Expand Down

0 comments on commit 80d8674

Please sign in to comment.