From d858f1402b4fb4e302d0b488eec0e4628b62296d Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Sun, 24 Feb 2013 19:44:25 -0500
Subject: blocks: removing throttle, threshold, stretch from gnuradio-core.

---
 gr-wxgui/python/fftsink_gl.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'gr-wxgui/python/fftsink_gl.py')

diff --git a/gr-wxgui/python/fftsink_gl.py b/gr-wxgui/python/fftsink_gl.py
index e87b86ec2a..88a5968e2c 100644
--- a/gr-wxgui/python/fftsink_gl.py
+++ b/gr-wxgui/python/fftsink_gl.py
@@ -169,7 +169,7 @@ class test_app_block (stdgui2.std_top_block):
 
         # We add these throttle blocks so that this demo doesn't
         # suck down all the CPU available.  Normally you wouldn't use these.
-        thr1 = gr.throttle(gr.sizeof_gr_complex, input_rate)
+        thr1 = blocks.throttle(gr.sizeof_gr_complex, input_rate)
 
         sink1 = fft_sink_c(panel, title="Complex Data", fft_size=fft_size,
 			   sample_rate=input_rate, baseband_freq=100e3,
@@ -183,7 +183,7 @@ class test_app_block (stdgui2.std_top_block):
 
         #src2 = analog.sig_source_f(input_rate, analog.GR_SIN_WAVE, 2e3, 1)
         src2 = analog.sig_source_f (input_rate, analog.GR_CONST_WAVE, 57.50e3, 1)
-        thr2 = gr.throttle(gr.sizeof_float, input_rate)
+        thr2 = blocks.throttle(gr.sizeof_float, input_rate)
         sink2 = fft_sink_f(panel, title="Real Data", fft_size=fft_size*2,
 			   sample_rate=input_rate, baseband_freq=100e3,
 			   ref_level=0, y_per_div=20, y_divs=10)
-- 
cgit v1.2.3