diff options
author | Tom Rondeau | 2011-04-06 00:22:29 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-04-06 00:22:29 -0400 |
commit | 8f53f5a782a6500d191ba557b37e7e3785cf6e02 (patch) | |
tree | a18c33aa51f4ac3defb8e179b12ce380b74e3da9 /gr-qtgui/python | |
parent | b0f876b55549db96920c2b3bfee32de6748096af (diff) | |
download | gnuradio-8f53f5a782a6500d191ba557b37e7e3785cf6e02.tar.gz gnuradio-8f53f5a782a6500d191ba557b37e7e3785cf6e02.tar.bz2 gnuradio-8f53f5a782a6500d191ba557b37e7e3785cf6e02.zip |
gr-qtgui: removing references to 3D waterfall plot and changning QtGui API to remove bool that turns it on/off.
Diffstat (limited to 'gr-qtgui/python')
-rwxr-xr-x | gr-qtgui/python/qa_qtgui.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-qtgui/python/qa_qtgui.py b/gr-qtgui/python/qa_qtgui.py index 7d3cf8098..dd6529ce0 100755 --- a/gr-qtgui/python/qa_qtgui.py +++ b/gr-qtgui/python/qa_qtgui.py @@ -34,12 +34,12 @@ class test_qtgui(gr_unittest.TestCase): self.tb = None def test01 (self): - pass + #pass # Test to make sure we can instantiate these - #self.qapp = QtGui.QApplication(sys.argv) - #self.qtsnk = qtgui_swig.sink_c(1024, gr.firdes.WIN_BLACKMAN_hARRIS, - # 0, 1, "Test", - # True, True, False, True, True) + self.qapp = QtGui.QApplication(sys.argv) + self.qtsnk = qtgui_swig.sink_c(1024, gr.firdes.WIN_BLACKMAN_hARRIS, + 0, 1, "Test", + True, True, True, True) if __name__ == '__main__': |