mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:13:05 +02:00
Update pasteEntities to const per suggestion.
This commit is contained in:
parent
d881e1e3c2
commit
5f0caf7de8
1 changed files with 1 additions and 1 deletions
|
@ -5545,7 +5545,7 @@ bool Application::importEntities(const QString& urlOrFilename, const bool isObse
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
QVector<EntityItemID> Application::pasteEntities(QString entityHostType, float x, float y, float z) {
|
QVector<EntityItemID> Application::pasteEntities(const QString entityHostType, const float x, const float y, const float z) {
|
||||||
return _entityClipboard->sendEntities(&_entityEditSender, getEntities()->getTree(), entityHostType, x, y, z);
|
return _entityClipboard->sendEntities(&_entityEditSender, getEntities()->getTree(), entityHostType, x, y, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue