summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib/TimeDomainDisplayPlot.cc
diff options
context:
space:
mode:
authorTom Rondeau2011-04-06 00:07:00 -0400
committerTom Rondeau2011-04-06 00:07:00 -0400
commitb0f876b55549db96920c2b3bfee32de6748096af (patch)
treecbf505aeb62dc8e708e1fef753feb5edb4f14b7f /gr-qtgui/lib/TimeDomainDisplayPlot.cc
parent484b6a0715f2ed6e4f460ee05887e1e5c98c1e2f (diff)
downloadgnuradio-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.cc4
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();
}
}