Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Added

### Changed
* [#59](https://github.com/stlehmann/PyQt5-stubs/pull/59) fixes QGuiApplication.lastWindowClosed to be a signal
* [#50](https://github.com/stlehmann/PyQt5-stubs/pull/50) fixes QTest QAbstractItemModelTester.FailureReportingMode attributes
* [#46](https://github.com/stlehmann/PyQt5-stubs/pull/46) fixes QCoreApplication and QObject signals
* [#48](https://github.com/stlehmann/PyQt5-stubs/pull/48) fixes some signals for QClipBoard, QWindows, QQuickView and QQml{Application,}Engine
Expand Down
2 changes: 1 addition & 1 deletion PyQt5-stubs/QtGui.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2333,7 +2333,7 @@ class QGuiApplication(QtCore.QCoreApplication):
def saveStateRequest(self, sessionManager: 'QSessionManager') -> None: ...
def commitDataRequest(self, sessionManager: 'QSessionManager') -> None: ...
def focusObjectChanged(self, focusObject: QtCore.QObject) -> None: ...
def lastWindowClosed(self) -> None: ...
lastWindowClosed: typing.ClassVar[QtCore.pyqtSignal]
def screenAdded(self, screen: 'QScreen') -> None: ...
def fontDatabaseChanged(self) -> None: ...
def notify(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
Expand Down