┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/search/dolphinsearchbox.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-11-12 23:18:21 +0000
committerPeter Penz <[email protected]>2009-11-12 23:18:21 +0000
commita87760d22c0213306380322ec6d9e23809ee4c93 (patch)
tree394304b43c914a69fbe5301fd10f02d0388f94ea /src/search/dolphinsearchbox.cpp
parent07f31c208790eaff918d7f08f442840c088dbe78 (diff)
move the search-button from the toolbar into the configurator widget
svn path=/trunk/KDE/kdebase/apps/; revision=1048239
Diffstat (limited to 'src/search/dolphinsearchbox.cpp')
-rw-r--r--src/search/dolphinsearchbox.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp
index c9a86111f..9f228140b 100644
--- a/src/search/dolphinsearchbox.cpp
+++ b/src/search/dolphinsearchbox.cpp
@@ -236,7 +236,6 @@ void DolphinSearchCompleter::highlighted(const QModelIndex& index)
DolphinSearchBox::DolphinSearchBox(QWidget* parent) :
QWidget(parent),
m_searchInput(0),
- m_searchButton(0),
m_completer(0)
{
QHBoxLayout* hLayout = new QHBoxLayout(this);
@@ -251,14 +250,6 @@ DolphinSearchBox::DolphinSearchBox(QWidget* parent) :
hLayout->addWidget(m_searchInput);
connect(m_searchInput, SIGNAL(returnPressed()),
this, SLOT(emitSearchSignal()));
-
- m_searchButton = new QToolButton(this);
- m_searchButton->setAutoRaise(true);
- m_searchButton->setIcon(KIcon("edit-find"));
- m_searchButton->setToolTip(i18nc("@info:tooltip", "Click to begin the search"));
- hLayout->addWidget(m_searchButton);
- connect(m_searchButton, SIGNAL(clicked()),
- this, SLOT(emitSearchSignal()));
}
DolphinSearchBox::~DolphinSearchBox()