diff options
author | mae <qt-info@nokia.com> | 2010-07-08 16:34:35 (GMT) |
---|---|---|
committer | mae <qt-info@nokia.com> | 2010-07-08 16:34:35 (GMT) |
commit | 3cf6e87b17d6ca722eea804d8e758879836f63fd (patch) | |
tree | 37dd47df3007cdc6f05a0bedff96f7a8155a3220 /src/gui/text/qtextcursor.cpp | |
parent | b22a5e13003ff9f23b075284a1a1e0a6b0e46250 (diff) | |
download | Qt-3cf6e87b17d6ca722eea804d8e758879836f63fd.zip Qt-3cf6e87b17d6ca722eea804d8e758879836f63fd.tar.gz Qt-3cf6e87b17d6ca722eea804d8e758879836f63fd.tar.bz2 |
Fix crash
Got introduced with change f62f6effab8d1551d8e5e5843dc478addee96de1
Reviewed-by: Roberto Raggi
Diffstat (limited to 'src/gui/text/qtextcursor.cpp')
-rw-r--r-- | src/gui/text/qtextcursor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/text/qtextcursor.cpp b/src/gui/text/qtextcursor.cpp index 63aa946..daa40a1 100644 --- a/src/gui/text/qtextcursor.cpp +++ b/src/gui/text/qtextcursor.cpp @@ -81,6 +81,7 @@ QTextCursorPrivate::QTextCursorPrivate(const QTextCursorPrivate &rhs) currentCharFormat = rhs.currentCharFormat; visualNavigation = rhs.visualNavigation; keepPositionOnInsert = rhs.keepPositionOnInsert; + changed = rhs.changed; priv->addCursor(this); } |