]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Remove obsolete signal/slot connection
authorPeter Penz <peter.penz19@gmail.com>
Sat, 12 May 2012 09:47:18 +0000 (11:47 +0200)
committerPeter Penz <peter.penz19@gmail.com>
Sat, 12 May 2012 09:47:40 +0000 (11:47 +0200)
src/search/dolphinsearchbox.cpp

index 4dee43cd54a9c469f56f77d95f887cf112011d87..28f1f1af56329f4b8c3cd872b90d660d0c2a4801 100644 (file)
@@ -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);