summaryrefslogtreecommitdiffstats
path: root/dist/changes-5.3.0
Commit message (Collapse)AuthorAgeFilesLines
* Update changelog for Qt 5.3.0Thiago Macieira2014-05-121-4/+40
| | | | | | Change-Id: I575938a761f1328c22777a7c5f00716d2856db58 Reviewed-by: Sergio Ahumada <sahumada@blackberry.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* update changelog for QtSql 5.3.0Mark Brand2014-05-071-8/+18
| | | | | Change-Id: I84c85603488ae0ae3499446f835aa066cf6c96cb Reviewed-by: Andy Shaw <andy.shaw@digia.com>
* Update changelog for iOSRichard Moe Gustavsen2014-05-021-0/+9
| | | | | Change-Id: Id0bbfa4aa1420cddbcc9950757c1c5fc83d744c1 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* Update the changelog for 5.3.0Thiago Macieira2014-04-241-6/+459
| | | | | Change-Id: Ic678258dc37d271daa4ee6a871907ca15db2ffde Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* update changelog for QtSql 5.3.0Mark Brand2014-03-181-0/+9
| | | | | | Change-Id: Ia01ed50aa1dd5a8f71b45639fbaba9b02093806c Reviewed-by: Andy Shaw <andy.shaw@digia.com> Reviewed-by: Mark Brand <mabrand@mabrand.nl>
* Add notice about deprecating OS X 10.6 (Snow Leopard)Tor Arne Vestbø2014-03-171-0/+8
| | | | | | | | | | See discussion on the Qt development mailing list: http://comments.gmane.org/gmane.comp.lib.qt.devel/15202 Change-Id: If151e1514f64ab08e440c7e9234df448d6f6c75e Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* 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>