diff options
author | Cristián Maureira-Fredes <[email protected]> | 2021-08-09 10:10:09 +0200 |
---|---|---|
committer | Cristian Maureira-Fredes <[email protected]> | 2021-08-10 08:26:51 +0000 |
commit | c7c0d1527085b4038ee39c66910285a83a110735 (patch) | |
tree | 849293835d3462ef60ea98a9cd36562780b1d24c /sources/pyside6/PySide6/QtNetwork | |
parent | a21203d534c2947a2e5f472ace3e83c552e83191 (diff) |
Allow threads in QAbstractSocket methods
This allows threads in the methods:
- waitForBytesWritten(int)
- waitForReadyRead(int)
Pick-to: 5.15 6.1
Fixes: PYSIDE-1640
Change-Id: I391feb7b5c834574c12e378318d5a39c49a4a75e
Reviewed-by: Christian Tismer <[email protected]>
Diffstat (limited to 'sources/pyside6/PySide6/QtNetwork')
-rw-r--r-- | sources/pyside6/PySide6/QtNetwork/typesystem_network.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/pyside6/PySide6/QtNetwork/typesystem_network.xml b/sources/pyside6/PySide6/QtNetwork/typesystem_network.xml index 51a3cbed8..40a598436 100644 --- a/sources/pyside6/PySide6/QtNetwork/typesystem_network.xml +++ b/sources/pyside6/PySide6/QtNetwork/typesystem_network.xml @@ -86,6 +86,8 @@ <modify-function signature="disconnectFromHost()" allow-thread="yes"/> <modify-function signature="waitForConnected(int)" allow-thread="yes"/> <modify-function signature="waitForDisconnected(int)" allow-thread="yes"/> + <modify-function signature="waitForBytesWritten(int)" allow-thread="yes"/> + <modify-function signature="waitForReadyRead(int)" allow-thread="yes"/> </object-type> <value-type name="QDnsDomainNameRecord"/> |