examples/goroutine6: update for new overload ordinals

This commit is contained in:
mappu 2025-04-12 14:59:43 +12:00
parent 329ea18df8
commit f3de0e064f

View File

@ -33,7 +33,7 @@ func main() {
}
button := qt.NewQPushButton5("start!", window.QWidget)
button.OnClicked1(func(bool) {
button.OnClicked(func() {
button.SetDisabled(true)
for i, label := range labels {
go func(index int, qlabel *qt.QLabel) {