diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-08-21 18:39:10 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-08-22 21:25:16 -0400 |
commit | 4a60c41913d7ebddf666d24e288533b453ee41ae (patch) | |
tree | 3049d02ab73709e03ca7b18c6a9dfa5ce4dc38f8 /gr-wxgui/src/python/fftsink_gl.py | |
parent | 5f720e1beb27f7457f20555f8ce1bb8c34c27cbe (diff) |
core: fixing location of some components for the new hierarchy.
ctest and digital examples working again.
Diffstat (limited to 'gr-wxgui/src/python/fftsink_gl.py')
-rw-r--r-- | gr-wxgui/src/python/fftsink_gl.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-wxgui/src/python/fftsink_gl.py b/gr-wxgui/src/python/fftsink_gl.py index dc31e84a10..72659b8fa4 100644 --- a/gr-wxgui/src/python/fftsink_gl.py +++ b/gr-wxgui/src/python/fftsink_gl.py @@ -26,7 +26,7 @@ from __future__ import division ################################################## import fft_window import common -from gnuradio import gr, blks2 +from gnuradio import gr, fft from pubsub import pubsub from constants import * import math @@ -132,12 +132,12 @@ class _fft_sink_base(gr.hier_block2, common.wxgui_hb): self.win.set_callback(callb) class fft_sink_f(_fft_sink_base): - _fft_chain = blks2.logpwrfft_f + _fft_chain = fft.logpwrfft_f _item_size = gr.sizeof_float _real = True class fft_sink_c(_fft_sink_base): - _fft_chain = blks2.logpwrfft_c + _fft_chain = fft.logpwrfft_c _item_size = gr.sizeof_gr_complex _real = False |