From 160247834acdb77953bfb254e8c587c694346f61 Mon Sep 17 00:00:00 2001 From: jasplin <qt-info@nokia.com> Date: Thu, 23 Apr 2009 14:41:55 +0200 Subject: [PATCH] Revert "Workaround backspace issue for now" This reverts commit ebfcd35ace30e902e64fb027e0395107f41e28ce. Qt 4.5 commit b51dd5a7b328291c5dbda540ce228e7d867662cb eliminates the need for this workaround for now. --- src/plugins/texteditor/basetexteditor.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index 76df5c71d18..9724ccf0b7f 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -1034,10 +1034,7 @@ bool BaseTextEditor::event(QEvent *e) d->m_contentsChanged = false; switch (e->type()) { case QEvent::ShortcutOverride: - if (static_cast<QKeyEvent*>(e)->key() == Qt::Key_Backspace) - e->accept(); - else - e->ignore(); // we are a really nice citizen + e->ignore(); // we are a really nice citizen return true; default: break; -- GitLab