Phil, 1-05-2012, ADDED INFO Short Description: Fix to new 6.2 "out of order typing" in slot incell edits Bug Number: 5148 Release notes (y/n): no (new problem in 6.2 development). For Release Nums: 6.2 ADDED INFO: It turns out that this WAS caused by the Qt4 Port of the Slot Data Table used in the standard open slot dialogs: Rw 6.1: SlotQDlgTable : SlotDataQTable : Q3Table Rw 6.2: SlotDataTableView : (Qt4) QTableView w/ QAbstractTableModel The order in which the QLineEdit cell widget receives events is different when starting an incell edit by typing a character. In Q3Table, the QLineEdit receives the initial keyPressEvent before it receives the QShowEvent. This is reversed with the Qt4 QTableVlew. Compare the two diagnostic traces: http://cadswes2.colorado.edu/~philw/2012/bugs/5148/trace-6p1.txt http://cadswes2.colorado.edu/~philw/2012/bugs/5148/trace-6p2.txt In any case, the modified logic in RwCellQLineEdit::showEvent (to fix this bug) will work in either scenario in the Qt4 table implementation (given that the QLineEdit gets destroyed when the incell edit sessioon completes -- that wasn't true in the Qt3 implementation). ---