mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 10:05:47 +08:00
FIXED: fixed impleentations of JKQTPlotter::beginGraphs(), which actually returned the end-iterator (COPY-PASTE-ERROR!!!)
This commit is contained in:
parent
474e511073
commit
e386cb97a7
@ -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>
|
||||
|
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user