diff --git a/src/gui/properties/speedwidget.cpp b/src/gui/properties/speedwidget.cpp index 83013d981..c0e63347f 100644 --- a/src/gui/properties/speedwidget.cpp +++ b/src/gui/properties/speedwidget.cpp @@ -72,7 +72,8 @@ SpeedWidget::SpeedWidget(PropertiesWidget *parent) m_periodCombobox->addItem(tr("30 Minutes")); m_periodCombobox->addItem(tr("6 Hours")); - connect(m_periodCombobox, SIGNAL(currentIndexChanged(int)), this, SLOT(onPeriodChange(int))); + connect(m_periodCombobox, static_cast(&QComboBox::currentIndexChanged) + , this, &SpeedWidget::onPeriodChange); m_graphsMenu = new QMenu(this); m_graphsMenu->addAction(tr("Total Upload")); @@ -93,10 +94,12 @@ SpeedWidget::SpeedWidget(PropertiesWidget *parent) QAction *action = m_graphsMenuActions.at(id); action->setCheckable(true); action->setChecked(true); - connect(action, SIGNAL(changed()), m_graphsSignalMapper, SLOT(map())); + connect(action, &QAction::changed, m_graphsSignalMapper + , static_cast(&QSignalMapper::map)); m_graphsSignalMapper->setMapping(action, id); } - connect(m_graphsSignalMapper, SIGNAL(mapped(int)), this, SLOT(onGraphChange(int))); + connect(m_graphsSignalMapper, static_cast(&QSignalMapper::mapped) + , this, &SpeedWidget::onGraphChange); m_graphsButton = new ComboBoxMenuButton(this, m_graphsMenu); m_graphsButton->addItem(tr("Select Graphs"));