Surface: replace slots with member function pointers

This commit is contained in:
wmayer
2023-02-01 16:27:00 +01:00
committed by Uwe
parent 9aede79ef8
commit 0363ebdf8f
5 changed files with 7 additions and 7 deletions

View File

@@ -714,7 +714,7 @@ void FillingPanel::onSelectionChanged(const Gui::SelectionChanges& msg)
}
editedObject->recomputeFeature();
QTimer::singleShot(50, this, SLOT(clearSelection()));
QTimer::singleShot(50, this, &FillingPanel::clearSelection);
}
}