--- a/eric7/Toolbox/Startup.py Sat May 22 17:01:51 2021 +0200 +++ b/eric7/Toolbox/Startup.py Sat May 22 18:51:46 2021 +0200 @@ -13,7 +13,7 @@ from PyQt6.QtCore import QTranslator, QLocale, QLibraryInfo, QDir from PyQt6.QtWidgets import QApplication -from E5Gui.E5Application import E5Application +from E5Gui.EricApplication import EricApplication import Globals @@ -118,7 +118,7 @@ Module function to initialize the default mime source factory. @param application reference to the application object - @type E5Application + @type EricApplication """ import Preferences @@ -137,7 +137,7 @@ Module function to determine the default icon paths. @param application reference to the application object - @type E5Application + @type EricApplication @return list of default icon paths @rtype list of str """ @@ -253,7 +253,7 @@ if app is None: # set the library paths for plugins setLibraryPaths() - app = E5Application(argv) + app = EricApplication(argv) application = app app.setQuitOnLastWindowClosed(quitOnLastWindowClosed) @@ -282,8 +282,8 @@ if installErrorHandler: # generate a graphical error handler - from E5Gui import E5ErrorMessage - eMsg = E5ErrorMessage.qtHandler() + from E5Gui import EricErrorMessage + eMsg = EricErrorMessage.qtHandler() eMsg.setMinimumSize(600, 400) return app.exec()