summaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-05-25 21:53:30 +0200
committerQt Continuous Integration System <qt-info@nokia.com>2010-05-25 21:53:30 +0200
commitef5891755bf760b68df1fc387e08a1b16980d6ad (patch)
treeffacc13c82dcadd1dda588e703ba43e440d9454c /dist
parent5a7223450d0ebd4eaa47f263005c6d1c2e142a76 (diff)
parenta32c96e753c2f5a123e518a92762ec9c9ff3b0b7 (diff)
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (50 commits) Dont crash when assigning the same input context twice. Fixed a typo in variable name in qlocale data generator. Fix for Norwegian and Korean languages on symbian. Remove unused function in QDBusConnectionPrivate Doc: Fixing bugs in HTML generator Updating 4.7.0 change log. Doc: Correcting style to class lists qdoc: Improved class index page. Added MSVC 2010 project files to .gitignore Fix architecture detection on GNU/Hurd. Revert "tst_bic: make it possible to test for cross-compilation" fix typo in documentation Improve Bearer Management related documentation in QNetworkAccessManager Compile with QT_NO_ACTION. Unbreak compilation outside Mac QDBusAbstractInterface: don't set lastError outside the object's own thread tst_bic: make it possible to test for cross-compilation Remove Q_PACKED from QChar and QLocale::Data. QDebug operator for QFlags Removing unneeded qDebug statement. ...
Diffstat (limited to 'dist')
-rw-r--r--dist/changes-4.7.019
1 files changed, 11 insertions, 8 deletions
diff --git a/dist/changes-4.7.0 b/dist/changes-4.7.0
index dff20ddaed..e7b1e84a6f 100644
--- a/dist/changes-4.7.0
+++ b/dist/changes-4.7.0
@@ -54,8 +54,6 @@ QtCore
* Significantly improved performance of the type() function
- QState
* [QTBUG-7741] Added a function to get the out-going transitions
- - QStateMachine
- * [QTBUG-8842] Reset history states when (re)starting machine
- QXmlStreamReader
* [QTBUG-9196] fixed crash when parsing
- QTimer
@@ -90,6 +88,9 @@ QtGui
- QGraphicsItem
* [QTBUG-8112] itemChange() is now called when transformation
properties change (setRotation, setScale, setTransformOriginPoint).
+ * [QTBUG-9024] Improved performance when calling update() on items that
+ are clipped by an ancestor (QGraphicsItem::ItemClipsChildrenToShape).
+ * [QTBUG-7703], [QTBUG-8378] Fixed scrolling issues
- QGraphicsTextItem
* [QTBUG-7333] Fixed keyboard shortcuts not being triggered when the
@@ -98,6 +99,7 @@ QtGui
- QGraphicsView
* [QTBUG-7438] Fixed viewport cursor getting reset when releasing
the mouse.
+ * [QTBUG-10338] Fixed drawing artifacts due to rounding errors.
- QImage
* [QTBUG-9640] Prevented unneccessary copy in QImage::setAlphaChannel().
@@ -166,12 +168,6 @@ QtNetwork
* [QTBUG-2515] Do not make OpenSSL prompt for a password
* [QTBUG-6504, QTBUG-8924, QTBUG-5645] Fix memleak
-QtOpenGL
---------
- - QGLWidget
- * [QTBUG-7865] Fixed bug where GL widgets were not fully updated on
- Windows Vista/7 with Aero disabled.
-
QtScript
--------
- Updated src/3rdparty/javascriptcore to a more recent version
@@ -341,3 +337,10 @@ QtScript: Changes due to updating src/3rdparty/javascriptcore:
a column number of 1.
- QScriptValueIterator will include the "length" property when iterating
over Array objects.
+
+QtCore:
+ - QChar no longer carries the Q_PACKED tag on ARM. This flag was
+ used to allow proper alignment of QChar on 2 bytes on older ARM
+ ABIs, but it also allowed for unaligned access. Qt never generates
+ or uses unaligned access and the new EABI aligns as expected, so
+ the flag was removed.