Ignore:
Timestamp:
Aug 2, 2010, 9:27:30 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/text/qtextcontrol.cpp

    r651 r769  
    12001200            cursor.setBlockFormat(blockFmt);
    12011201        } else {
    1202             cursor.deletePreviousChar();
     1202            QTextCursor localCursor = cursor;
     1203            localCursor.deletePreviousChar();
    12031204        }
    12041205        goto accept;
     
    12331234#endif
    12341235    else if (e == QKeySequence::Delete) {
    1235         cursor.deleteChar();
     1236        QTextCursor localCursor = cursor;
     1237        localCursor.deleteChar();
    12361238    }
    12371239    else if (e == QKeySequence::DeleteEndOfWord) {
Note: See TracChangeset for help on using the changeset viewer.