@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2015, Axel Dörfler, [email protected].
|
* Copyright 2015-2016, Axel Dörfler, [email protected].
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -137,9 +137,8 @@ PersonList::EntryRemoved(QueryList& source, const node_ref& nodeRef)
|
|||||||
PersonMap::iterator found = fPersonMap.find(nodeRef);
|
PersonMap::iterator found = fPersonMap.find(nodeRef);
|
||||||
if (found != fPersonMap.end()) {
|
if (found != fPersonMap.end()) {
|
||||||
Person* person = found->second;
|
Person* person = found->second;
|
||||||
fPersons.RemoveItem(person);
|
|
||||||
fPersonMap.erase(found);
|
fPersonMap.erase(found);
|
||||||
delete person;
|
fPersons.RemoveItem(person);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user