Выполнение этого кода в редакторе Qt:
QPushButton button("Animated Button");
button.show();
QPropertyAnimation animation(&button, "geometry");
animation.setDuration(3000);
animation.setStartValue(QRect(0, 0, 100, 30));
animation.setEndValue(QRect(250, 250, 100, 30));
animation.setEasingCurve(QEasingCurve::OutBounce);
animation.start();
Я получаю всплывающее окно с сообщением об ошибке:
![enter image description here](https://i.stack.imgur.com/vm3Ct.png)