diff -r 5dc02b23752f -r 3e2da88830cd src/gui/text/qtextdocument_p.h --- a/src/gui/text/qtextdocument_p.h Tue Jul 06 15:10:48 2010 +0300 +++ b/src/gui/text/qtextdocument_p.h Wed Aug 18 10:37:55 2010 +0300 @@ -132,6 +132,7 @@ BlockAdded = 6, BlockDeleted = 7, GroupFormatChange = 8, + CursorMoved = 9, Custom = 256 }; enum Operation { @@ -276,7 +277,7 @@ void documentChange(int from, int length); inline void addCursor(QTextCursorPrivate *c) { cursors.append(c); } - inline void removeCursor(QTextCursorPrivate *c) { cursors.removeAll(c); changedCursors.removeAll(c); } + inline void removeCursor(QTextCursorPrivate *c) { cursors.removeAll(c); } QTextFrame *frameAt(int pos) const; QTextFrame *rootFrame() const; @@ -315,6 +316,7 @@ bool modified; int editBlock; + int editBlockCursorPosition; int docChangeFrom; int docChangeOldLength; int docChangeLength; @@ -327,8 +329,7 @@ BlockMap blocks; int initialBlockCharFormatIndex; - QList cursors; - QList changedCursors; + QList cursors; QMap objects; QMap resources; QMap cachedResources; @@ -344,6 +345,7 @@ int maximumBlockCount; uint needsEnsureMaximumBlockCount : 1; uint inContentsChange : 1; + uint blockCursorAdjustment : 1; QSizeF pageSize; QString title; QString url;