summaryrefslogtreecommitdiff
path: root/gr-qtgui/python
diff options
context:
space:
mode:
authorTom Rondeau2011-04-06 00:22:29 -0400
committerTom Rondeau2011-04-06 00:22:29 -0400
commit8f53f5a782a6500d191ba557b37e7e3785cf6e02 (patch)
treea18c33aa51f4ac3defb8e179b12ce380b74e3da9 /gr-qtgui/python
parentb0f876b55549db96920c2b3bfee32de6748096af (diff)
downloadgnuradio-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-xgr-qtgui/python/qa_qtgui.py10
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__':