FIXED: fixed impleentations of JKQTPlotter::beginGraphs(), which actually returned the end-iterator (COPY-PASTE-ERROR!!!)

This commit is contained in:
jkriege2 2023-08-14 12:38:58 +02:00
parent 474e511073
commit e386cb97a7
2 changed files with 4 additions and 3 deletions

View File

@ -37,6 +37,7 @@ Changes, compared to \ref page_whatsnew_V4_0_0 "v4.0.0" include:
<li>FIXED: color palettes with few entries (i.e. "step"-palettes) were not applied correctly</li>
<li>FIXED: fixes strange rendering with distortions (especially in text!), by correcting size calculation of internal image buffer</li>
<li>FIXED: exporting gridPrinting plots when using only a JKQTBasePlotter</li>
<li>FIXED: fixed impleentations of JKQTPlotter::beginGraphs(), which actually returned the end-iterator (COPY-PASTE-ERROR!!!)</li>
<li>REORGANIZED: separated line-graphs from jkqtpscatter.h/.cpp into jkqtplines.h/.cpp</li>
<li>IMPROVED: QT6-compatibility by removing deprecated warnings</li>
<li>IMPROVED: added missing override declarations</li>

View File

@ -713,7 +713,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
/** \copydoc JKQTBasePlotter::beginGraphs() */
inline typename JKQTBasePlotter::GraphsConstIterator cbeginGraphs() const {
return plotter->cendGraphs();
return plotter->cbeginGraphs();
}
/** \copydoc JKQTBasePlotter::endGraphs() */
inline typename JKQTBasePlotter::GraphsConstIterator cendGraphs() const {
@ -722,7 +722,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
/** \copydoc JKQTBasePlotter::beginGraphs() */
inline typename JKQTBasePlotter::GraphsConstIterator beginGraphs() const {
return plotter->endGraphs();
return plotter->beginGraphs();
}
/** \copydoc JKQTBasePlotter::endGraphs() */
inline typename JKQTBasePlotter::GraphsConstIterator endGraphs() const {
@ -730,7 +730,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
}
/** \copydoc JKQTBasePlotter::beginGraphs() */
inline typename JKQTBasePlotter::GraphsIterator beginGraphs() {
return plotter->endGraphs();
return plotter->beginGraphs();
}
/** \copydoc JKQTBasePlotter::endGraphs() */
inline typename JKQTBasePlotter::GraphsIterator endGraphs() {