From kde-commits Mon Feb 28 13:54:39 2005 From: Harri Porten Date: Mon, 28 Feb 2005 13:54:39 +0000 To: kde-commits Subject: kdelibs/khtml/xml Message-Id: <20050228135439.1B610148A2 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110960088511238 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();