Preferences/ConfigurationDialog.py

changeset 1131
7781e396c903
parent 1127
b1802ebe0066
child 1232
ed31e909cf2e
--- a/Preferences/ConfigurationDialog.py	Sun Jun 19 17:50:39 2011 +0200
+++ b/Preferences/ConfigurationDialog.py	Sun Jun 19 19:36:27 2011 +0200
@@ -41,7 +41,7 @@
         @param pageName name of the configuration page (string)
         @param iconFile file name of the icon to be shown (string)
         """
-        QTreeWidgetItem.__init__(self, parent, [text])
+        super().__init__(parent, [text])
         self.setIcon(0, UI.PixmapCache.getIcon(iconFile))
         
         self.__pageName = pageName
@@ -86,7 +86,7 @@
             ConfigurationWidget.TrayStarterMode
         )
         
-        QWidget.__init__(self, parent)
+        super().__init__(parent)
         self.fromEric = fromEric
         self.displayMode = displayMode
         
@@ -675,7 +675,7 @@
         @keyparam displayMode mode of the configuration dialog
             (DefaultMode, HelpBrowserMode, TrayStarterMode)
         """
-        QDialog.__init__(self, parent)
+        super().__init__(parent)
         if name:
             self.setObjectName(name)
         self.setModal(modal)
@@ -742,7 +742,7 @@
         
         @param parent reference to the parent widget (QWidget)
         """
-        QMainWindow.__init__(self, parent)
+        super().__init__(parent)
         
         self.cw = ConfigurationWidget(self, fromEric=False)
         size = self.cw.size()

eric ide

mercurial