SAGA2: Rename abort() methods

This commit is contained in:
Eugene Sandulenko 2021-05-27 11:03:05 +02:00
parent 863adf7918
commit b8ab6203e4
No known key found for this signature in database
GPG key ID: 014D387312D34F08
8 changed files with 87 additions and 154 deletions

View file

@ -62,7 +62,7 @@ ActorAssignment::~ActorAssignment(void) {
if (a->currentGoal == actorGoalFollowAssignment
&& a->curTask != NULL) {
// If so, abort it
a->curTask->abort();
a->curTask->abortTask();
delete a->curTask;
a->curTask = NULL;
}