Skip to content

Commit

Permalink
Merge pull request #46 from stlehmann/fix-QCoreApplication-signals
Browse files Browse the repository at this point in the history
Fix QCoreApplication signals
  • Loading branch information
stlehmann authored May 13, 2020
2 parents 7cac4ac + 2ecf85f commit 9216a0c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 5.14.2.3 [unreleased]

### Added

### Changed
* [#46](https://github.com/stlehmann/PyQt5-stubs/pull/46]) fixes QCoreApplication and QObject signals

### Removed

## 5.14.2.2

### Added
Expand Down
10 changes: 7 additions & 3 deletions PyQt5-stubs/QtCore.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1769,8 +1769,8 @@ class QObject(sip.wrapper):
def deleteLater(self) -> None: ...
def inherits(self, classname: str) -> bool: ...
def parent(self) -> 'QObject': ...
def objectNameChanged(self, objectName: str) -> None: ...
def destroyed(self, object: typing.Optional['QObject'] = ...) -> None: ...
objectNameChanged: pyqtSignal
destroyed: pyqtSignal
def property(self, name: str) -> typing.Any: ...
def setProperty(self, name: str, value: typing.Any) -> bool: ...
def dynamicPropertyNames(self) -> typing.List['QByteArray']: ...
Expand Down Expand Up @@ -2909,7 +2909,7 @@ class QCoreApplication(QObject):
@staticmethod
def setApplicationVersion(version: str) -> None: ...
def event(self, a0: 'QEvent') -> bool: ...
def aboutToQuit(self) -> None: ...
aboutToQuit: pyqtSignal
@staticmethod
def quit() -> None: ...
@staticmethod
Expand Down Expand Up @@ -2979,6 +2979,10 @@ class QCoreApplication(QObject):
def organizationDomain() -> str: ...
@staticmethod
def setOrganizationDomain(orgDomain: str) -> None: ...
applicationNameChanged: pyqtSignal
applicationVersionChanged: pyqtSignal
organizationDomainChanged: pyqtSignal
organizationNameChanged: pyqtSignal


class QEvent(sip.wrapper):
Expand Down

0 comments on commit 9216a0c

Please sign in to comment.