summaryrefslogtreecommitdiff
path: root/grc/data/platforms/python/flow_graph.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'grc/data/platforms/python/flow_graph.tmpl')
-rw-r--r--grc/data/platforms/python/flow_graph.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/data/platforms/python/flow_graph.tmpl b/grc/data/platforms/python/flow_graph.tmpl
index 2341ef46f..0d02d258e 100644
--- a/grc/data/platforms/python/flow_graph.tmpl
+++ b/grc/data/platforms/python/flow_graph.tmpl
@@ -42,13 +42,13 @@ $imp
#set $param_str = ', '.join(['self'] + ['%s=%s'%(param.get_id(), param.get_make()) for param in $parameters])
#if $generate_options == 'wx_gui'
#from gnuradio.grc.platforms.base.Constants import DATA_DIR
- #from gnuradio.grc.gui.Constants import MAIN_WINDOW_PREFIX
+ #from gnuradio.grc.gui import Preferences
class $(class_name)(grc_wxgui.top_block_gui):
def __init__($param_str):
grc_wxgui.top_block_gui.__init__(
self,
- title="$MAIN_WINDOW_PREFIX - Executing: $flow_graph.get_option('title')",
+ title="$Preferences.window_prefix() - Executing: $flow_graph.get_option('title')",
icon="$(os.path.join($DATA_DIR, 'grc-icon-32.png'))",
)
#elif $generate_options == 'no_gui'