mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 21:12:53 +02:00
remove unneeded const
This commit is contained in:
parent
fa06f50841
commit
bf6fce4e45
1 changed files with 1 additions and 1 deletions
|
@ -1653,7 +1653,7 @@ void EntityItem::deserializeActionsInternal() {
|
||||||
// remove any actions that weren't included in the new data.
|
// remove any actions that weren't included in the new data.
|
||||||
QHash<QUuid, EntityActionPointer>::const_iterator i = _objectActions.begin();
|
QHash<QUuid, EntityActionPointer>::const_iterator i = _objectActions.begin();
|
||||||
while (i != _objectActions.end()) {
|
while (i != _objectActions.end()) {
|
||||||
const QUuid id = i.key();
|
QUuid id = i.key();
|
||||||
if (!updated.contains(id)) {
|
if (!updated.contains(id)) {
|
||||||
_actionsToRemove << id;
|
_actionsToRemove << id;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue