X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fabstractitemview.cpp;h=c1076f8c128e3014775e632d954f5a5db583bbc9;hb=3a3e844f9fcfd12235a0086af75ecd503b621ef4;hp=4ad4486998f3c6a0d40990f73c1c9d547491290b;hpb=9d54503555534a2c554f09a33df6afa33d6308ec;p=quassel.git diff --git a/src/uisupport/abstractitemview.cpp b/src/uisupport/abstractitemview.cpp index 4ad44869..c1076f8c 100644 --- a/src/uisupport/abstractitemview.cpp +++ b/src/uisupport/abstractitemview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 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,7 +31,7 @@ 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)), @@ -46,7 +46,7 @@ void AbstractItemView::setModel(QAbstractItemModel *model) 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)),