diff -r 3e9f0330f833 -r 7781e396c903 E5Gui/E5TabWidget.py --- a/E5Gui/E5TabWidget.py Sun Jun 19 17:50:39 2011 +0200 +++ b/E5Gui/E5TabWidget.py Sun Jun 19 19:36:27 2011 +0200 @@ -21,7 +21,7 @@ @param parent reference to the parent widget (QWidget) """ - QTabBar.__init__(self, parent) + super().__init__(parent) self._tabWidget = parent def wheelEvent(self, event): @@ -138,7 +138,7 @@ @param parent reference to the parent widget (QWidget) @keyparam dnd flag indicating the support for Drag & Drop (boolean) """ - QTabWidget.__init__(self, parent) + super().__init__(parent) if dnd: if not hasattr(self, 'setMovable'):