summaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@digia.com>2012-10-26 12:28:31 +0200
committerTor Arne Vestbø <tor.arne.vestbo@digia.com>2012-10-26 12:28:53 +0200
commit6e5818f2bbc8443b9308252a5e1543e014ef439d (patch)
tree07922adee2f13e818b9439c8a0bdf871dda59039 /dist
parent32aac0a1c009ee940920fd12f277180dd80b8eff (diff)
parentdeac55becd18efa4504eb686a1bb8081a5cd488a (diff)
Merge remote-tracking branch 'gerrit/master' into newdocs
Diffstat (limited to 'dist')
-rw-r--r--dist/changes-5.0.015
1 files changed, 14 insertions, 1 deletions
diff --git a/dist/changes-5.0.0 b/dist/changes-5.0.0
index 834b62edbe..a9fe12bd2f 100644
--- a/dist/changes-5.0.0
+++ b/dist/changes-5.0.0
@@ -323,6 +323,8 @@ information about a particular change.
- QAbstractPageSetupDialog has been removed.
+- QThread::terminated() has been removed, since its emission cannot be guaranteed.
+
****************************************************************************
* General *
****************************************************************************
@@ -517,8 +519,17 @@ QtGui
rectangle filling. It's possible to still get the old behavior by setting the
QPainter::Qt4CompatiblePainting render hint.
+* Behavioral change regarding QPen: The default QPen constructors now create a
+ 1-width non-cosmetic pen as opposed to a 0-width cosmetic pen. The old
+ behavior can be emulated by setting the QPainter::Qt4CompatiblePainting
+ render hint when painting.
+
QtWidgets
---------
+* A new style QFusionStyle has been introduced, while QPlastiqueStyle, QCleanlooksStyle,
+ QCDEStyle and QMotifStyle have been removed. The older styles will be
+ made available to applications as a standalone source package.
+
* QInputContext removed as well as related getters and setters on QWidget and QApplication.
Input contexts are now platform specific.
@@ -702,7 +713,9 @@ subclass.
and modelReset() signals suffice to inform views that they must reinterrogate
the model.
-* QSqlTableModel::selectRow(): This is a new method that refreshes a single
+* QSqlTableModel::select() is now a slot.
+
+* QSqlTableModel::selectRow(): This is a new slot that refreshes a single
row in the model from the database.
* QSqlTableModel edit strategies OnFieldChange/OnRowChange QTBUG-2875