--- a/RefactoringRope/RopeProgressDialog.py Wed May 26 17:53:08 2021 +0200 +++ b/RefactoringRope/RopeProgressDialog.py Wed May 26 19:07:42 2021 +0200 @@ -7,13 +7,13 @@ Module implementing a TaskHandle class with a progress dialog. """ -from PyQt5.QtCore import QCoreApplication -from PyQt5.QtWidgets import QLabel +from PyQt6.QtCore import QCoreApplication +from PyQt6.QtWidgets import QLabel -from E5Gui.E5ProgressDialog import E5ProgressDialog +from EricWidgets.EricProgressDialog import EricProgressDialog -class RopeProgressDialog(E5ProgressDialog): +class RopeProgressDialog(EricProgressDialog): """ Class implementing TaskHandle with a progress dialog. """ @@ -22,7 +22,7 @@ Constructor @param server reference to the JSON server - @type E5JsonServer + @type EricJsonServer @param title title for the dialog @type str @param interruptable flag indicating, that the task may be @@ -38,7 +38,7 @@ label = QLabel("") label.setWordWrap(True) self.setLabel(label) - self.setWindowTitle(self.tr("eric6 - {0}").format(title)) + self.setWindowTitle(self.tr("eric7 - {0}").format(title)) self.__server = server