summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib/FrequencyDisplayPlot.cc
diff options
context:
space:
mode:
authorJosh Blum2011-06-07 22:55:41 -0400
committerTom Rondeau2011-06-07 22:55:41 -0400
commitbbf11bb338a4a88a1f270f77649212fea0b0cab0 (patch)
tree29a2465d3f2441d067971fa07fc22b39242f2b1d /gr-qtgui/lib/FrequencyDisplayPlot.cc
parenteae515a2356a140e4407945eed21e56b90bb98d9 (diff)
downloadgnuradio-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.cc4
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();
}
}