--- a/eric7/eric7_browser.py Sat May 22 17:01:51 2021 +0200 +++ b/eric7/eric7_browser.py Sat May 22 18:51:46 2021 +0200 @@ -41,9 +41,9 @@ if "--quiet" not in sys.argv: from PyQt6.QtCore import QTimer from PyQt6.QtWidgets import QApplication - from E5Gui import E5MessageBox # __IGNORE_WARNING__ + from E5Gui import EricMessageBox # __IGNORE_WARNING__ app = QApplication([]) - QTimer.singleShot(0, lambda: E5MessageBox.critical( + QTimer.singleShot(0, lambda: EricMessageBox.critical( None, "eric Web Browser", "QtWebEngineWidgets is not installed but needed to execute the" @@ -56,7 +56,7 @@ import Globals from Globals import AppInfo -from E5Gui.E5Application import E5Application +from E5Gui.EricApplication import EricApplication from Toolbox import Startup @@ -157,7 +157,7 @@ scheme.setFlags(QWebEngineUrlScheme.Flag.SecureScheme) QWebEngineUrlScheme.registerScheme(scheme) - app = E5Application(sys.argv) + app = EricApplication(sys.argv) if "--private" not in sys.argv: client = WebBrowserSingleApplicationClient() res = client.connect()