diff options
author | Josh Blum | 2011-06-07 22:55:41 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-06-07 22:55:41 -0400 |
commit | bbf11bb338a4a88a1f270f77649212fea0b0cab0 (patch) | |
tree | 29a2465d3f2441d067971fa07fc22b39242f2b1d /gr-qtgui/lib/FrequencyDisplayPlot.cc | |
parent | eae515a2356a140e4407945eed21e56b90bb98d9 (diff) | |
download | gnuradio-bbf11bb338a4a88a1f270f77649212fea0b0cab0.tar.gz gnuradio-bbf11bb338a4a88a1f270f77649212fea0b0cab0.tar.bz2 gnuradio-bbf11bb338a4a88a1f270f77649212fea0b0cab0.zip |
qtgui: removed all traces of highResTimeFunctions.h
Diffstat (limited to 'gr-qtgui/lib/FrequencyDisplayPlot.cc')
-rw-r--r-- | gr-qtgui/lib/FrequencyDisplayPlot.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-qtgui/lib/FrequencyDisplayPlot.cc b/gr-qtgui/lib/FrequencyDisplayPlot.cc index 5db32c6f1..f57edd8f6 100644 --- a/gr-qtgui/lib/FrequencyDisplayPlot.cc +++ b/gr-qtgui/lib/FrequencyDisplayPlot.cc @@ -362,7 +362,7 @@ FrequencyDisplayPlot::PlotNewData(const double* dataPoints, const int64_t numDat { // Only update plot if there is data and if the time interval has elapsed if((numDataPoints > 0) && - (get_highres_clock() - _lastReplot > timeInterval*gruel::high_res_timer_tps())) { + (gruel::high_res_timer_now() - _lastReplot > timeInterval*gruel::high_res_timer_tps())) { if(numDataPoints != _numPoints) { _numPoints = numDataPoints; @@ -401,7 +401,7 @@ FrequencyDisplayPlot::PlotNewData(const double* dataPoints, const int64_t numDat SetUpperIntensityLevel(_peakAmplitude); - _lastReplot = get_highres_clock(); + _lastReplot = gruel::high_res_timer_now(); } } |