From: Peter Penz Date: Sat, 12 May 2012 09:47:18 +0000 (+0200) Subject: Remove obsolete signal/slot connection X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/6039c246eacf69ac3a219d00ba1dd56e44fc6685 Remove obsolete signal/slot connection --- diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp index 4dee43cd5..28f1f1af5 100644 --- a/src/search/dolphinsearchbox.cpp +++ b/src/search/dolphinsearchbox.cpp @@ -320,13 +320,11 @@ void DolphinSearchBox::init() m_contentButton = new QToolButton(); m_contentButton->setText(i18nc("action:button", "Content")); - initButton(m_contentButton);; + initButton(m_contentButton); QButtonGroup* searchWhatGroup = new QButtonGroup(this); searchWhatGroup->addButton(m_fileNameButton); searchWhatGroup->addButton(m_contentButton); - connect(m_fileNameButton, SIGNAL(clicked()), this, SLOT(slotSearchContextChanged())); - connect(m_contentButton, SIGNAL(clicked()), this, SLOT(slotSearchContextChanged())); m_separator = new KSeparator(Qt::Vertical, this);