┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/serviceitemdelegate.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/settings/serviceitemdelegate.cpp
parent05f2c9c320694ee79dd0b60b35d98003f2d8df96 (diff)
dolphin: convert statusbar, settings and search to qt5 signals/slot syntax
Diffstat (limited to 'src/settings/serviceitemdelegate.cpp')
-rw-r--r--src/settings/serviceitemdelegate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings/serviceitemdelegate.cpp b/src/settings/serviceitemdelegate.cpp
index 8058b369b..5b8b582fe 100644
--- a/src/settings/serviceitemdelegate.cpp
+++ b/src/settings/serviceitemdelegate.cpp
@@ -72,10 +72,10 @@ QList<QWidget*> ServiceItemDelegate::createItemWidgets(const QModelIndex&) const
QPalette palette = checkBox->palette();
palette.setColor(QPalette::WindowText, palette.color(QPalette::Text));
checkBox->setPalette(palette);
- connect(checkBox, SIGNAL(clicked(bool)), this, SLOT(slotCheckBoxClicked(bool)));
+ connect(checkBox, &QCheckBox::clicked, this, &ServiceItemDelegate::slotCheckBoxClicked);
KPushButton* configureButton = new KPushButton();
- connect(configureButton, SIGNAL(clicked()), this, SLOT(slotConfigureButtonClicked()));
+ connect(configureButton, &KPushButton::clicked, this, &ServiceItemDelegate::slotConfigureButtonClicked);
return QList<QWidget*>() << checkBox << configureButton;
}