Editor: Remove now unnecessary qOverload instances

These used to be necessary on older versions of Qt
This commit is contained in:
Lioncache
2025-12-07 09:08:07 -05:00
parent 6fac2d126f
commit 2d0d3d03c6
10 changed files with 64 additions and 67 deletions

View File

@@ -38,7 +38,7 @@ INodeEditor::INodeEditor(QWidget *pParent)
connect(mGizmoActions[1], &QAction::triggered, this, &INodeEditor::OnTranslateTriggered);
connect(mGizmoActions[2], &QAction::triggered, this, &INodeEditor::OnRotateTriggered);
connect(mGizmoActions[3], &QAction::triggered, this, &INodeEditor::OnScaleTriggered);
connect(mpTransformCombo, qOverload<int>(&QComboBox::currentIndexChanged), this, &INodeEditor::OnTransformSpaceChanged);
connect(mpTransformCombo, &QComboBox::currentIndexChanged, this, &INodeEditor::OnTransformSpaceChanged);
connect(mpSelection, &CNodeSelection::Modified, this, &INodeEditor::OnSelectionModified);
}