58 messagebox.showerror( |
58 messagebox.showerror( |
59 "eric6 Error", |
59 "eric6 Error", |
60 "PyQt could not be imported. Please make sure" |
60 "PyQt could not be imported. Please make sure" |
61 " it is installed and accessible.") |
61 " it is installed and accessible.") |
62 sys.exit(100) |
62 sys.exit(100) |
|
63 |
|
64 try: |
|
65 from PyQt5 import QtWebEngineWidgets # __IGNORE_WARNING__ |
|
66 except ImportError: |
|
67 pass |
63 |
68 |
64 # some global variables needed to start the application |
69 # some global variables needed to start the application |
65 args = None |
70 args = None |
66 mainWindow = None |
71 mainWindow = None |
67 splash = None |
72 splash = None |