summaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
Diffstat (limited to 'dist')
-rw-r--r--dist/changes-5.0.07
1 files changed, 0 insertions, 7 deletions
diff --git a/dist/changes-5.0.0 b/dist/changes-5.0.0
index 353c7694d6..0df359f3ed 100644
--- a/dist/changes-5.0.0
+++ b/dist/changes-5.0.0
@@ -353,13 +353,6 @@ QtCore
QRegularExpressionMatchIterator. They aim to replace QRegExp with a more
powerful and flexible regular expression engine.
-* Certain methods in QRegExp that modified the object's internals are no longer marked
- const. They were accidentally marked const in Qt 4 but the problem could not be
- fixed. The following are suggestions to adapt code to this change:
- - make sure the QRegExp object is not const in the given context
- - create a copy of the QRegExp object before using it
- - invert the operation and use QString. E.g., rx.indexIn(string) becomes string.indexOf(rx)
-
* QEvent::AccessibilityPrepare, AccessibilityHelp and AccessibilityDescription removed:
* The enum values simply didn't make sense in the first place and should simply be dropped.