┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/search/dolphinsearchbox.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-10-17 19:24:05 +0000
committerPeter Penz <[email protected]>2009-10-17 19:24:05 +0000
commit884b5ad3a91fff896fb3d53e590fe26300b1c957 (patch)
tree376fc718ef7c446569e5aacf94b56b4cae120898 /src/search/dolphinsearchbox.cpp
parent002787543fd245291cb9a9ece7a0071e08498d3b (diff)
add A search options widget, which later on will include Adam Kidder's search prototype from playground
svn path=/trunk/KDE/kdebase/apps/; revision=1036776
Diffstat (limited to 'src/search/dolphinsearchbox.cpp')
-rw-r--r--src/search/dolphinsearchbox.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp
index d224575ea..312bfb1cb 100644
--- a/src/search/dolphinsearchbox.cpp
+++ b/src/search/dolphinsearchbox.cpp
@@ -261,8 +261,8 @@ DolphinSearchBox::DolphinSearchBox(QWidget* parent) :
m_searchInput->setClickMessage(i18nc("@label:textbox", "Search..."));
m_searchInput->installEventFilter(this);
hLayout->addWidget(m_searchInput);
- connect(m_searchInput, SIGNAL(textEdited(const QString&)),
- this, SLOT(slotTextEdited(const QString&)));
+ connect(m_searchInput, SIGNAL(textChanged(const QString&)),
+ this, SIGNAL(textChanged(const QString&)));
connect(m_searchInput, SIGNAL(returnPressed()),
this, SLOT(emitSearchSignal()));
@@ -311,8 +311,4 @@ void DolphinSearchBox::emitSearchSignal()
emit search(KUrl("nepomuksearch:/" + m_searchInput->text()));
}
-void DolphinSearchBox::slotTextEdited(const QString& text)
-{
-}
-
#include "dolphinsearchbox.moc"