X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fabstractitemview.cpp;h=0fe2254758dba9eafaf8467be90899cab7f5701e;hp=e8eb141d018e64a2aaf2ed4b18d87b9d75d6aa2b;hb=fcacaaf16551524c7ebb6114254d005274cc3d63;hpb=04315f46a16fc3627218377071e008b6b9744992 diff --git a/src/uisupport/abstractitemview.cpp b/src/uisupport/abstractitemview.cpp index e8eb141d..0fe22547 100644 --- a/src/uisupport/abstractitemview.cpp +++ b/src/uisupport/abstractitemview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -22,8 +22,8 @@ AbstractItemView::AbstractItemView(QWidget *parent) : QWidget(parent), - _model(0), - _selectionModel(0) + _model(nullptr), + _selectionModel(nullptr) { } @@ -31,26 +31,26 @@ AbstractItemView::AbstractItemView(QWidget *parent) void AbstractItemView::setModel(QAbstractItemModel *model) { if (_model) { - disconnect(_model, 0, this, 0); + 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); } void AbstractItemView::setSelectionModel(QItemSelectionModel *selectionModel) { if (_selectionModel) { - disconnect(_selectionModel, 0, this, 0); + 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); }