mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 10:05:47 +08:00
addGraph function return value fixed (#140)
authored-by: Sajad Hosseini <s.hosseinirostami@halm.de>
This commit is contained in:
parent
8ff150ab01
commit
2e0d0d7540
@ -781,7 +781,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
inline void clearGraphs(bool deleteGraphs=true) { plotter->clearGraphs(deleteGraphs); }
|
||||
|
||||
/** \copydoc JKQTBasePlotter::addGraph() */
|
||||
inline void addGraph(JKQTPPlotElement* gr) { plotter->addGraph(gr); }
|
||||
inline size_t addGraph(JKQTPPlotElement* gr) { return plotter->addGraph(gr); }
|
||||
/** \copydoc JKQTBasePlotter::addGraphOnTop() */
|
||||
inline void addGraphOnTop(JKQTPPlotElement* gr) { plotter->addGraphOnTop(gr); }
|
||||
/** \copydoc JKQTBasePlotter::addGraphAtBottom() */
|
||||
|
Loading…
Reference in New Issue
Block a user