diff options
author | Bastian Bloessl <mail@bastibl.net> | 2019-08-27 18:23:58 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-09-05 13:14:21 +0200 |
commit | cdb0535e7dea1d856cca4ec18b724fe9326e1ccf (patch) | |
tree | 03fe9f186941e83ec873614957cb0d218132fee9 /gr-qtgui/lib/plot_raster.cc | |
parent | 747196f3ba052c35eefd8d2407621eeb7f528f3f (diff) |
qtgui: do not override parent function
Diffstat (limited to 'gr-qtgui/lib/plot_raster.cc')
-rw-r--r-- | gr-qtgui/lib/plot_raster.cc | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gr-qtgui/lib/plot_raster.cc b/gr-qtgui/lib/plot_raster.cc index 46095ecbdf..312d344fb8 100644 --- a/gr-qtgui/lib/plot_raster.cc +++ b/gr-qtgui/lib/plot_raster.cc @@ -299,22 +299,3 @@ QwtInterval PlotTimeRaster::interval(Qt::Axis ax) const } #endif -/*! - \brief Draw the raster - - \param painter Painter - \param xMap Maps x-values into pixel coordinates. - \param yMap Maps y-values into pixel coordinates. - \param canvasRect Contents rect of the canvas in painter coordinates - - \sa setDisplayMode, renderImage, - QwtPlotRasterItem::draw, drawContourLines -*/ - -void PlotTimeRaster::draw(QPainter* painter, - const QwtScaleMap& xMap, - const QwtScaleMap& yMap, - const QRect& canvasRect) const -{ - QwtPlotRasterItem::draw(painter, xMap, yMap, canvasRect); -} |