summaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2010-05-18 14:46:25 +0200
committerKent Hansen <kent.hansen@nokia.com>2010-05-18 14:46:59 +0200
commite737ca580654affdee656979b31fab7591972ff1 (patch)
tree80fa1c5ad7509d863960846f25626cabe8e8127b /dist
parentb40e5271102bf0dcbaffff393797c0122dcf29d2 (diff)
My 4.7.0 changes
Diffstat (limited to 'dist')
-rw-r--r--dist/changes-4.7.022
1 files changed, 22 insertions, 0 deletions
diff --git a/dist/changes-4.7.0 b/dist/changes-4.7.0
index 739a38dc61..ea6df7b34d 100644
--- a/dist/changes-4.7.0
+++ b/dist/changes-4.7.0
@@ -50,6 +50,12 @@ Third party components
QtCore
------
+ - QMetaType
+ * 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
@@ -146,6 +152,15 @@ QtNetwork
* [QTBUG-2515] Do not make OpenSSL prompt for a password
* [QTBUG-6504, QTBUG-8924, QTBUG-5645] Fix memleak
+QtScript
+--------
+ - Updated src/3rdparty/javascriptcore to a more recent version
+ - Significantly improved performance of the Qt/C++<-->JavaScript bridge
+ - QScriptValueIterator: Significantly improved performance
+ - [QTBUG-3637] Added a wrap option for excluding slots from a QObject binding
+ - [QTBUG-6238] Added a function for reporting additional memory cost
+ - [QTBUG-6908] Significantly improved performance of qsTr()
+
QtXmlPatterns
-------------
@@ -288,3 +303,10 @@ Qt for Windows CE
* Important Behavior Changes *
****************************************************************************
+QtScript: Changes due to updating src/3rdparty/javascriptcore:
+ - It is no longer possible to delete an undeletable property from C++
+ using QScriptValue::setProperty().
+ - The QScriptEngineAgent::positionChange() callback will always report
+ a column number of 1.
+ - QScriptValueIterator will include the "length" property when iterating
+ over Array objects.