aboutsummaryrefslogtreecommitdiffstats
path: root/examples/widgets/animation
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-07-27 12:59:33 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-07-27 11:32:34 +0000
commit8d0886324bb8a975d4c5296ca0882d47d5741092 (patch)
tree69717b1d155553648a777796cd0249ccd8862877 /examples/widgets/animation
parentb96297d6687445a35ad00e7204dd83956497b8ca (diff)
Fix a few examples to work
Adapt to the Qt 6 API. Task-number: PYSIDE-1339 Task-number: PYSIDE-904 Change-Id: Ia471ae8acc454dbbdd05700d08aee5bd6a265cee Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'examples/widgets/animation')
-rw-r--r--examples/widgets/animation/easing/easing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/animation/easing/easing.py b/examples/widgets/animation/easing/easing.py
index 18b5c09de..d5c733863 100644
--- a/examples/widgets/animation/easing/easing.py
+++ b/examples/widgets/animation/easing/easing.py
@@ -121,7 +121,7 @@ class Window(QtWidgets.QWidget):
m_ui.overshootSpinBox.setValue(dummy.overshoot())
m_ui.easingCurvePicker.currentRowChanged.connect(self.curveChanged)
- m_ui.buttonGroup.buttonClicked[int].connect(self.pathChanged)
+ m_ui.buttonGroup.idClicked.connect(self.pathChanged)
m_ui.periodSpinBox.valueChanged.connect(self.periodChanged)
m_ui.amplitudeSpinBox.valueChanged.connect(self.amplitudeChanged)
m_ui.overshootSpinBox.valueChanged.connect(self.overshootChanged)