┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/search/dolphinfacetswidget.cpp
diff options
context:
space:
mode:
authorAlex Richardson <[email protected]>2014-04-10 03:02:10 +0200
committerAlex Richardson <[email protected]>2014-05-05 23:05:34 +0200
commit7a26fbc5c59596161b026b070e786767b94b4979 (patch)
treeb96597d65f50100795ba418f723f10e645e93c3c /src/search/dolphinfacetswidget.cpp
parent05f2c9c320694ee79dd0b60b35d98003f2d8df96 (diff)
dolphin: convert statusbar, settings and search to qt5 signals/slot syntax
Diffstat (limited to 'src/search/dolphinfacetswidget.cpp')
-rw-r--r--src/search/dolphinfacetswidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search/dolphinfacetswidget.cpp b/src/search/dolphinfacetswidget.cpp
index b7315a01c..4fd2eb30b 100644
--- a/src/search/dolphinfacetswidget.cpp
+++ b/src/search/dolphinfacetswidget.cpp
@@ -181,7 +181,7 @@ QStringList DolphinFacetsWidget::facetTypes() const
QCheckBox* DolphinFacetsWidget::createCheckBox(const QString& text)
{
QCheckBox* checkBox = new QCheckBox(text);
- connect(checkBox, SIGNAL(clicked()), this, SIGNAL(facetChanged()));
+ connect(checkBox, &QCheckBox::clicked, this, &DolphinFacetsWidget::facetChanged);
return checkBox;
}
@@ -189,7 +189,7 @@ QRadioButton* DolphinFacetsWidget::createRadioButton(const QString& text,
QButtonGroup* group)
{
QRadioButton* button = new QRadioButton(text);
- connect(button, SIGNAL(clicked()), this, SIGNAL(facetChanged()));
+ connect(button, &QRadioButton::clicked, this, &DolphinFacetsWidget::facetChanged);
group->addButton(button);
return button;
}