mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 00:13: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.
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue