CVS commit by porten: fixing an oversight noticed by dfaure M +1 -1 dom2_eventsimpl.cpp 1.53 --- kdelibs/khtml/xml/dom2_eventsimpl.cpp #1.52:1.53 @@ -736,5 +736,5 @@ int TextEventImpl::keyCode() const int c = charCode(); if (c != 0) { - return QChar(charCode()).upper().unicode(); + return QChar(c).upper().unicode(); } else { c = m_keyEvent->key();