Details
-
Bug
-
Resolution: Unresolved
-
P4: Low
-
None
-
6.4.1
-
None
-
-
8fccba0e6 (dev), 8b4785823 (6.4), b326ef734 (6.5), 62e4e8090 (tqtc/lts-6.2)
Description
PySide6 QtCore.QTimer.singleShot documentation contains an example:
QTimer.singleShot(600000, app, SLOT(quit()))
This example does not work as SLOT() does not exist in PySide6 6.4.1.
Correct code:
QTimer.singleShot(600000, app.quit)
For more information. please refer to the Qt forum. Can someone update the documentation for Qt Python?
Attachments
Issue Links
- relates to
-
PYSIDE-2111 A lot of pages look like an automatic translation of the C++ documentation
- Closed