diff options
author | Tom Rondeau | 2011-04-06 00:07:00 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-04-06 00:07:00 -0400 |
commit | b0f876b55549db96920c2b3bfee32de6748096af (patch) | |
tree | cbf505aeb62dc8e708e1fef753feb5edb4f14b7f /gr-qtgui/lib/TimeDomainDisplayPlot.cc | |
parent | 484b6a0715f2ed6e4f460ee05887e1e5c98c1e2f (diff) | |
download | gnuradio-b0f876b55549db96920c2b3bfee32de6748096af.tar.gz gnuradio-b0f876b55549db96920c2b3bfee32de6748096af.tar.bz2 gnuradio-b0f876b55549db96920c2b3bfee32de6748096af.zip |
gr-qtgui: cleaning up unnecessary plotting calls.
Diffstat (limited to 'gr-qtgui/lib/TimeDomainDisplayPlot.cc')
-rw-r--r-- | gr-qtgui/lib/TimeDomainDisplayPlot.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gr-qtgui/lib/TimeDomainDisplayPlot.cc b/gr-qtgui/lib/TimeDomainDisplayPlot.cc index 9c98cec5b..da28d0304 100644 --- a/gr-qtgui/lib/TimeDomainDisplayPlot.cc +++ b/gr-qtgui/lib/TimeDomainDisplayPlot.cc @@ -121,8 +121,6 @@ TimeDomainDisplayPlot::TimeDomainDisplayPlot(QWidget* parent):QwtPlot(parent) _sampleRate = 1; _resetXAxisPoints(); - replot(); - #if QT_VERSION < 0x040000 _zoomer->setMousePattern(QwtEventPattern::MouseSelect2, Qt::RightButton, Qt::ControlModifier); @@ -220,8 +218,6 @@ void TimeDomainDisplayPlot::PlotNewData(const double* realDataPoints, memcpy(_realDataPoints, realDataPoints, numDataPoints*sizeof(double)); memcpy(_imagDataPoints, imagDataPoints, numDataPoints*sizeof(double)); - replot(); - _lastReplot = get_highres_clock(); } } |