mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
Fix typo in previous commit
This commit is contained in:
parent
ea98b58b40
commit
961eca4327
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ Box operator*(const glm::mat4& matrix, const Box& box) {
|
|||
}
|
||||
|
||||
QDebug& operator<<(QDebug& dbg, const Box& box) {
|
||||
return dbg.nospace() << "{type='Box', minimum=" << box.minimum << ", maximumx=" << box.maximum << "}";
|
||||
return dbg.nospace() << "{type='Box', minimum=" << box.minimum << ", maximum=" << box.maximum << "}";
|
||||
}
|
||||
|
||||
QMetaObjectEditor::QMetaObjectEditor(QWidget* parent) : QWidget(parent) {
|
||||
|
|
Loading…
Reference in a new issue