43 Constructor |
43 Constructor |
44 |
44 |
45 @param parent reference to the parent widget |
45 @param parent reference to the parent widget |
46 @type QWidget |
46 @type QWidget |
47 """ |
47 """ |
48 super(E5GoogleMailAuthBrowser, self).__init__(parent) |
48 super().__init__(parent) |
49 |
49 |
50 self.__layout = QVBoxLayout(self) |
50 self.__layout = QVBoxLayout(self) |
51 |
51 |
52 from PyQt5.QtWebEngineWidgets import QWebEngineView |
52 from PyQt5.QtWebEngineWidgets import QWebEngineView |
53 self.__browser = QWebEngineView(self) |
53 self.__browser = QWebEngineView(self) |