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

@@ -16,7 +16,7 @@ WCreateTab::WCreateTab(CWorldEditor *pEditor, QWidget *pParent)
connect(mpEditor, &CWorldEditor::LayersModified, this, &WCreateTab::OnLayersChanged);
connect(gpEdApp, &CEditorApplication::ActiveProjectChanged, this, &WCreateTab::OnActiveProjectChanged);
connect(ui->SpawnLayerComboBox, qOverload<int>(&QComboBox::currentIndexChanged), this, &WCreateTab::OnSpawnLayerChanged);
connect(ui->SpawnLayerComboBox, &QComboBox::currentIndexChanged, this, &WCreateTab::OnSpawnLayerChanged);
}
WCreateTab::~WCreateTab() = default;