diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2015-11-20 17:28:17 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-17 19:55:16 +0100 |
commit | 9f5ef34ac05de070a99fae07eb1a8087ba60a653 (patch) | |
tree | 44ab20b78404c94e85689b8511521e7456d58e3d /grc/gui/Param.py | |
parent | 64f3b70cf135a8641a0271ee27b431e05a8df97b (diff) |
grc-refactor: move grc.base to grc.python.base
Diffstat (limited to 'grc/gui/Param.py')
-rw-r--r-- | grc/gui/Param.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/grc/gui/Param.py b/grc/gui/Param.py index 6884d6530a..ddfbdcbb1a 100644 --- a/grc/gui/Param.py +++ b/grc/gui/Param.py @@ -24,7 +24,9 @@ pygtk.require('2.0') import gtk from . import Colors, Utils, Constants, Dialogs -from . Element import Element +from .Element import Element + +from ..python.Param import Param as _Param class InputParam(gtk.HBox): @@ -378,11 +380,12 @@ Error: #end if""" -class Param(Element): +class Param(Element, _Param): """The graphical parameter.""" - def __init__(self): + def __init__(self, **kwargs): Element.__init__(self) + _Param.__init__(self, **kwargs) def get_input(self, *args, **kwargs): """ |