summaryrefslogtreecommitdiffstats
path: root/dist/changes-5.3.0
Commit message (Collapse)AuthorAgeFilesLines
* Change format of dist/changes-5.3.0 to what is used in changes-5.2.0Marc Mutz2013-11-261-4/+5
| | | | | | Change-Id: I9c11a126a70c25085f1465e2593bb878c736f8b4 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* Add swapInterval to QSurfaceFormatLaszlo Agocs2013-11-131-0/+4
| | | | | | | | | | | | | | | Implement swap interval support for EGL, GLX and WGL. The environment variable QT_QPA_EGLFS_SWAPINTERVAL is renamed to QT_QPA_EGL_SWAPINTERVAL and can be used to override the applications' setting of the swap interval. Task-number: QTBUG-31939 Change-Id: I644325d5d3306b7604bffd7efccda3c00ed37d36 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com>
* QSignalBlocker: (new) RAII class for QObject::blockSignals()Marc Mutz2013-10-301-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | I don't think I ever worked on a project of non-trivial size that didn't at some point add a QSignalBlocker. This commit adds code, tests and documentation. Later commits will convert naked blockSignals() calls to use QSignalBlocker. The implementation is purely inline to avoid the heavy overhead of cross-dll function calls for this miniscule task. This should not be a problem because QSignalBlocker only uses public API and a pattern that we anyway need to keep working until Qt 6, at least, so even changing the implementation later will be no problem as the old implementation lurking in non-recompiled code will be acceptable, too. This implementation is an evolution from KDTools' KDSignalBlocker, with the following changes: - Implements unblock() and reblock() - Uses the return value of blockSignals() instead of a separate signalsBlocked() call. Change-Id: I1933dfd72a0f5190324be377cfca3c54cf3d6828 Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
* Add empty dist/changes-5.3.0 fileMarc Mutz2013-10-261-0/+29
Change-Id: Iea2f6bb3b1d5c922167c4e96c825c08db9aa1b4e Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>