Change
toQt Code:
QList<QwtPlotCurve> myList = new QList<QwtPlotCurve>;To copy to clipboard, switch view to plain text mode
You are declaring pointers, but you are trying to store them to a list of objects.Qt Code:
QList<QwtPlotCurve*> myList = new QList<QwtPlotCurve*>;To copy to clipboard, switch view to plain text mode
Bookmarks