--- a/UI/UserInterface.py Sun Jun 19 17:50:39 2011 +0200 +++ b/UI/UserInterface.py Sun Jun 19 19:36:27 2011 +0200 @@ -128,7 +128,7 @@ @param stderr flag indicating stderr is being redirected """ - QObject.__init__(self) + super().__init__() self.stderr = stderr self.buffer = '' @@ -207,7 +207,7 @@ @param restartArguments list of command line parameters to be used for a restart (list of strings) """ - QMainWindow.__init__(self) + super().__init__() self.setAttribute(Qt.WA_DeleteOnClose) self.__restartArgs = restartArguments[:]