Qwt for Qt: How to connect to signal with new signal/slot flavour?
问题 I want to to connect to legend-label SIGNAL checked. With Qts old Signal/Slot-Syntax all is perfect, but i want to use the new connection to enable compile-time check? Any idea on how to connect it via new Signal/Slot-Syntax? This is my code: connect( m_plotLegend, SIGNAL( checked( const QVariant &, bool, int ) ), SLOT(legendChecked( const QVariant &, bool ) ) ); //connect(m_plotLegend, &QwtLegend::checked, this, &MeasurePlot::legendChecked); With oldy syntax all is fine, with the new syntax