summaryrefslogtreecommitdiff
path: root/grc/main.py
diff options
context:
space:
mode:
authorSeth Hitefield <sdhitefield@gmail.com>2016-08-11 14:30:33 -0400
committerSeth Hitefield <sdhitefield@gmail.com>2016-09-23 16:18:10 -0400
commitc7ea78c37db2d36ace3051ce10bc94fe71501819 (patch)
tree411bfeedb42f84c45780e87187b63a96f49c825e /grc/main.py
parent03af90b98904b636b6fca75c3a4837391e3c03e2 (diff)
grc: gtk3: Renamed the ActionHandler to Application
Diffstat (limited to 'grc/main.py')
-rwxr-xr-xgrc/main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/grc/main.py b/grc/main.py
index e4d2cef234..e0f2b26d05 100755
--- a/grc/main.py
+++ b/grc/main.py
@@ -24,7 +24,7 @@ from gi.repository import Gtk
from gnuradio import gr
from .gui.Platform import Platform
-from .gui.ActionHandler import ActionHandler
+from .gui.Application import Application
VERSION_AND_DISCLAIMER_TEMPLATE = """\
@@ -53,6 +53,6 @@ def main():
prefs=gr.prefs(),
install_prefix=gr.prefix()
)
-
- app = ActionHandler(args.flow_graphs, platform)
+
+ app = Application(args.flow_graphs, platform)
sys.exit(app.run())