diff options
author | Tom Rondeau | 2011-05-09 12:13:50 +0100 |
---|---|---|
committer | Tom Rondeau | 2011-05-09 12:13:50 +0100 |
commit | 97fd10af58ecd4effcf1715eed502836e3c2e1da (patch) | |
tree | b68022fd71f548e46b057b7c55e88ebf1bd9dfb7 /gr-qtgui/swig/qtgui_time_sink_c.i | |
parent | a72bde633dda63c4471111894ca6b92a87318d5f (diff) | |
download | gnuradio-97fd10af58ecd4effcf1715eed502836e3c2e1da.tar.gz gnuradio-97fd10af58ecd4effcf1715eed502836e3c2e1da.tar.bz2 gnuradio-97fd10af58ecd4effcf1715eed502836e3c2e1da.zip |
gr-qtgui: makes time sink a sync_block (since it is) and uses set_output_multiple instead of forecast. The result is that multiple streams maintain constant relationship, which they did not before. This should also prevent us from having to keep so much book-keeping of the indecies, and we will hopefully be able to clean this up soon.
Diffstat (limited to 'gr-qtgui/swig/qtgui_time_sink_c.i')
-rw-r--r-- | gr-qtgui/swig/qtgui_time_sink_c.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/swig/qtgui_time_sink_c.i b/gr-qtgui/swig/qtgui_time_sink_c.i index 8f5c9f4f0..e7240aa69 100644 --- a/gr-qtgui/swig/qtgui_time_sink_c.i +++ b/gr-qtgui/swig/qtgui_time_sink_c.i @@ -33,7 +33,7 @@ qtgui_time_sink_c_sptr qtgui_make_time_sink_c(int size, double bw, int nconnections=1, QWidget *parent=NULL); -class qtgui_time_sink_c : public gr_block +class qtgui_time_sink_c : public gr_sync_block { private: friend qtgui_time_sink_c_sptr qtgui_make_time_sink_c(int size, double bw, |