mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 08:56:26 +02:00
Fix warnings
This commit is contained in:
parent
3f0d44990a
commit
dbb7023fc1
1 changed files with 3 additions and 3 deletions
|
@ -105,19 +105,19 @@ void SelectionScriptingInterface::printList(const QString& listName) {
|
||||||
|
|
||||||
qDebug() << "Avatar IDs:";
|
qDebug() << "Avatar IDs:";
|
||||||
for (auto i : currentList.getAvatarIDs()) {
|
for (auto i : currentList.getAvatarIDs()) {
|
||||||
qDebug() << i << '; ';
|
qDebug() << i << ';';
|
||||||
}
|
}
|
||||||
qDebug() << "";
|
qDebug() << "";
|
||||||
|
|
||||||
qDebug() << "Entity IDs:";
|
qDebug() << "Entity IDs:";
|
||||||
for (auto j : currentList.getEntityIDs()) {
|
for (auto j : currentList.getEntityIDs()) {
|
||||||
qDebug() << j << '; ';
|
qDebug() << j << ';';
|
||||||
}
|
}
|
||||||
qDebug() << "";
|
qDebug() << "";
|
||||||
|
|
||||||
qDebug() << "Overlay IDs:";
|
qDebug() << "Overlay IDs:";
|
||||||
for (auto k : currentList.getOverlayIDs()) {
|
for (auto k : currentList.getOverlayIDs()) {
|
||||||
qDebug() << k << '; ';
|
qDebug() << k << ';';
|
||||||
}
|
}
|
||||||
qDebug() << "";
|
qDebug() << "";
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue