remove unneeded const

This commit is contained in:
Seth Alves 2015-07-09 17:05:15 -07:00
parent fa06f50841
commit bf6fce4e45

View file

@ -1653,7 +1653,7 @@ void EntityItem::deserializeActionsInternal() {
// remove any actions that weren't included in the new data.
QHash<QUuid, EntityActionPointer>::const_iterator i = _objectActions.begin();
while (i != _objectActions.end()) {
const QUuid id = i.key();
QUuid id = i.key();
if (!updated.contains(id)) {
_actionsToRemove << id;
}