<div dir="ltr">The widgets/slider.h header overloads to no args constructor twice:<br><br>&nbsp;&nbsp;&nbsp; explicit Slider(Qt::Orientation orientation = Qt::Vertical,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QGraphicsWidget *parent = 0);<br>&nbsp;&nbsp;&nbsp; explicit Slider(QGraphicsWidget *parent = 0);<br>
<br>So one or other of the first default argument values for these constructors should be removed, otherwise you can&#39;t call the no args version. Or maybe the orientation argument should go after the parent in the first one, and then only one constructor would be needed?<br>
<br>-- Richard<br><br></div>