(self, args)
| 290 | |
| 291 | class CefApplication(QApplication): |
| 292 | def __init__(self, args): |
| 293 | super(CefApplication, self).__init__(args) |
| 294 | if not cef.GetAppSetting("external_message_pump"): |
| 295 | self.timer = self.createTimer() |
| 296 | self.setupIcon() |
| 297 | |
| 298 | def createTimer(self): |
| 299 | timer = QTimer() |
nothing calls this directly
no test coverage detected