┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-11-07 15:00:09 +0000
committerPeter Penz <[email protected]>2010-11-07 15:00:09 +0000
commitaec3493935671100f9321d0b061e34f279854f6e (patch)
treebf8a7a8bb386093df855024de0d85b3cc66824c6 /src
parent456d529295b7e9ee2a776480dce3a7151528b0dd (diff)
The clearing is already done in DolphinSearchBox::keyReleaseEvent()
svn path=/trunk/KDE/kdebase/apps/; revision=1193915
Diffstat (limited to 'src')
-rw-r--r--src/search/dolphinsearchbox.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp
index 6fb22fb17..6ab1362c8 100644
--- a/src/search/dolphinsearchbox.cpp
+++ b/src/search/dolphinsearchbox.cpp
@@ -115,10 +115,6 @@ bool DolphinSearchBox::event(QEvent* event)
{
if (event->type() == QEvent::Polish) {
init();
- } else if (event->type() == QEvent::KeyPress) {
- if (static_cast<QKeyEvent* >(event)->key() == Qt::Key_Escape) {
- m_searchInput->clear();
- }
}
return QWidget::event(event);
}