diff -r f7ac710697a9 -r 06ff229162e9 src/hbcore/inputfw/hbinputmethodnull.cpp --- a/src/hbcore/inputfw/hbinputmethodnull.cpp Mon May 03 12:48:33 2010 +0300 +++ b/src/hbcore/inputfw/hbinputmethodnull.cpp Fri May 14 16:09:54 2010 +0300 @@ -85,15 +85,7 @@ */ bool HbInputMethodNull::filterEvent(const QEvent* event) { - if (!event || event->type() != QEvent::KeyPress) { - return false; - } - - if (focusObject() && !(focusObject()->editorInterface().constraints() & HbEditorConstraintOnlySecondaryChannel)) { - qDebug("WARNING: HbInputMethodNull::filterEvent called without HbEditorConstraintOnlySecondaryChannel."); - qDebug(" Is everything ok?"); - } - + Q_UNUSED(event); return false; }