X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fabstractitemview.cpp;h=c1076f8c128e3014775e632d954f5a5db583bbc9;hp=dced67b3ab351617ca7dc17af282c31fe989b8f2;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/uisupport/abstractitemview.cpp b/src/uisupport/abstractitemview.cpp index dced67b3..c1076f8c 100644 --- a/src/uisupport/abstractitemview.cpp +++ b/src/uisupport/abstractitemview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 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 * @@ -15,15 +15,15 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "abstractitemview.h" 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)),