eric6/E5Gui/E5TabWidget.py

changeset 7900
72b88fb20261
parent 7780
41420f82c0ac
child 7923
91e843545d9a
equal deleted inserted replaced
7899:ecf67e07b6e0 7900:72b88fb20261
143 def __init__(self, parent=None, dnd=False): 143 def __init__(self, parent=None, dnd=False):
144 """ 144 """
145 Constructor 145 Constructor
146 146
147 @param parent reference to the parent widget (QWidget) 147 @param parent reference to the parent widget (QWidget)
148 @keyparam dnd flag indicating the support for Drag & Drop (boolean) 148 @param dnd flag indicating the support for Drag & Drop (boolean)
149 """ 149 """
150 super(E5TabWidget, self).__init__(parent) 150 super(E5TabWidget, self).__init__(parent)
151 151
152 if dnd: 152 if dnd:
153 if not hasattr(self, 'setMovable'): 153 if not hasattr(self, 'setMovable'):

eric ide

mercurial