diff options
author | Ron Economos <w6rz@comcast.net> | 2020-07-19 16:08:56 -0700 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-07-22 12:57:10 -0400 |
commit | c2f42238032e2315371aaec8a64687d99028ccd2 (patch) | |
tree | 141b0b63cb6eebe7ccd27b01da8832b0d7eca838 /gr-qtgui/examples/pyqt_const_c.py | |
parent | b3de331436bfda3aa30575db698d181ee5d406f7 (diff) |
gr-qtgui: Repair qtgui examples for pybind11.
Diffstat (limited to 'gr-qtgui/examples/pyqt_const_c.py')
-rw-r--r-- | gr-qtgui/examples/pyqt_const_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/examples/pyqt_const_c.py b/gr-qtgui/examples/pyqt_const_c.py index a02deb78a1..d027206dd1 100644 --- a/gr-qtgui/examples/pyqt_const_c.py +++ b/gr-qtgui/examples/pyqt_const_c.py @@ -141,7 +141,7 @@ class my_top_block(gr.top_block): src = blocks.add_cc() channel = channels.channel_model(0.001) thr = blocks.throttle(gr.sizeof_gr_complex, 100*npts) - self.snk1 = qtgui.const_sink_c(npts, "Constellation Example", 1) + self.snk1 = qtgui.const_sink_c(npts, "Constellation Example", 1, None) self.snk1.disable_legend() self.connect(src1, (src,0)) |