diff options
Diffstat (limited to 'gr-wxgui/src/python/stdgui2.py')
-rw-r--r-- | gr-wxgui/src/python/stdgui2.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gr-wxgui/src/python/stdgui2.py b/gr-wxgui/src/python/stdgui2.py index 28b2fadd3e..83158abd98 100644 --- a/gr-wxgui/src/python/stdgui2.py +++ b/gr-wxgui/src/python/stdgui2.py @@ -86,10 +86,8 @@ class stdpanel (wx.Panel): self.runtime = gr.runtime(self.top_block) self.runtime.start () -class std_top_block (gr.hier_block2): +class std_top_block (gr.top_block): def __init__ (self, parent, panel, vbox, argv): # Call the hier_block2 constructor # Top blocks have no inputs and outputs - gr.hier_block2.__init__(self, "std_top_block", - gr.io_signature(0,0,0), - gr.io_signature(0,0,0)) + gr.top_block.__init__(self, "std_top_block") |