clazy: Convert many old-style connects into function pointer based
[quassel.git] / src / uisupport / abstractitemview.cpp
index c1076f8..0fe2254 100644 (file)
@@ -34,12 +34,12 @@ void AbstractItemView::setModel(QAbstractItemModel *model)
         disconnect(_model, nullptr, this, nullptr);
     }
     _model = model;
-    connect(model, SIGNAL(dataChanged(QModelIndex, QModelIndex)),
-        this, SLOT(dataChanged(QModelIndex, QModelIndex)));
-    connect(model, SIGNAL(rowsAboutToBeRemoved(QModelIndex, int, int)),
-        this, SLOT(rowsAboutToBeRemoved(QModelIndex, int, int)));
-    connect(model, SIGNAL(rowsInserted(QModelIndex, int, int)),
-        this, SLOT(rowsInserted(QModelIndex, int, int)));
+    connect(model, &QAbstractItemModel::dataChanged,
+        this, &AbstractItemView::dataChanged);
+    connect(model, &QAbstractItemModel::rowsAboutToBeRemoved,
+        this, &AbstractItemView::rowsAboutToBeRemoved);
+    connect(model, &QAbstractItemModel::rowsInserted,
+        this, &AbstractItemView::rowsInserted);
 }
 
 
@@ -49,8 +49,8 @@ void AbstractItemView::setSelectionModel(QItemSelectionModel *selectionModel)
         disconnect(_selectionModel, nullptr, this, nullptr);
     }
     _selectionModel = selectionModel;
-    connect(selectionModel, SIGNAL(currentChanged(QModelIndex, QModelIndex)),
-        this, SLOT(currentChanged(QModelIndex, QModelIndex)));
-    connect(selectionModel, SIGNAL(selectionChanged(QItemSelection, QItemSelection)),
-        this, SLOT(selectionChanged(QItemSelection, QItemSelection)));
+    connect(selectionModel, &QItemSelectionModel::currentChanged,
+        this, &AbstractItemView::currentChanged);
+    connect(selectionModel, &QItemSelectionModel::selectionChanged,
+        this, &AbstractItemView::selectionChanged);
 }