diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-27 22:24:15 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-09-05 20:27:18 +0200 |
commit | 324e72db7e4d9564dbfea853d8244a080e7ffaf8 (patch) | |
tree | 2c21d72198efd1d63c03e749ef2581ec5f6936d6 /grc/core/generator/Generator.py | |
parent | edb67f4a69b2bf73adcce71f3449b7e65fab25a3 (diff) |
grc: remove support for old msg queues
cherry-picked from gtk3 branch
Diffstat (limited to 'grc/core/generator/Generator.py')
-rw-r--r-- | grc/core/generator/Generator.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/grc/core/generator/Generator.py b/grc/core/generator/Generator.py index be570ee587..33d50d6b19 100644 --- a/grc/core/generator/Generator.py +++ b/grc/core/generator/Generator.py @@ -161,7 +161,7 @@ class TopBlockGenerator(object): # Filter out virtual sink connections def cf(c): - return not (c.is_bus() or c.is_msg() or c.get_sink().get_parent().is_virtual_sink()) + return not (c.is_bus() or c.get_sink().get_parent().is_virtual_sink()) connections = filter(cf, fg.get_enabled_connections()) # Get the virtual blocks and resolve their connections @@ -210,7 +210,6 @@ class TopBlockGenerator(object): )) connection_templates = fg.get_parent().connection_templates - msgs = filter(lambda c: c.is_msg(), fg.get_enabled_connections()) # List of variable names var_ids = [var.get_id() for var in parameters + variables] @@ -239,7 +238,6 @@ class TopBlockGenerator(object): 'blocks': blocks, 'connections': connections, 'connection_templates': connection_templates, - 'msgs': msgs, 'generate_options': self._generate_options, 'callbacks': callbacks, } |