Hey all
I am using QCustomPlot successfully with Qt 6.9.0
Hey all
I am using QCustomPlot successfully with Qt 6.9.0
Hey, without any corrections?
Hi all
Work well for me directly from Qt 6.4.3 to Qt 6.8.3 without any change in code. Just used mingw compiler version 15.1.0.
I had to change nothing within qcustomplot and it worked smoothly.
I also use mingw. Version: mingw_64, Qt 6.9.1 now
When I was building against Qt 6.8.3 LTS I had to change this line in qcustomplot.h:
#if QT_VERSION >= 0x060200 // don't use QT_VERSION_CHECK here, some moc versions don't understand it
to:
#if QT_VERSION >= QT_VERSION_CHECK(6, 2, 0)
I ported my application from Qt v6.7.3 to v6.8.3. I don't get any errors, but I do get some deprecation warnings.
Those seems to be related to Qt::TimeSpec. This is replaced by QTimeZone in some sort.