205 @param noOpenAtStartup flag indicating that the open at startup option |
205 @param noOpenAtStartup flag indicating that the open at startup option |
206 should not be executed (boolean) |
206 should not be executed (boolean) |
207 @param restartArguments list of command line parameters to be used for a |
207 @param restartArguments list of command line parameters to be used for a |
208 restart (list of strings) |
208 restart (list of strings) |
209 """ |
209 """ |
210 QMainWindow.__init__(self) |
210 super().__init__() |
211 self.setAttribute(Qt.WA_DeleteOnClose) |
211 self.setAttribute(Qt.WA_DeleteOnClose) |
212 |
212 |
213 self.__restartArgs = restartArguments[:] |
213 self.__restartArgs = restartArguments[:] |
214 |
214 |
215 self.defaultStyleName = QApplication.style().objectName() |
215 self.defaultStyleName = QApplication.style().objectName() |