X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuisupport%2Fbufferviewoverlayfilter.cpp;h=df0d3a5522ec46353bb9a2f226a9233bce36903b;hb=2c8434f74c68194d56f2084f637419123e61d18b;hp=cd918f78fb57cbf8c8e32c84ef10d8f896039c61;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/uisupport/bufferviewoverlayfilter.cpp b/src/uisupport/bufferviewoverlayfilter.cpp index cd918f78..df0d3a55 100644 --- a/src/uisupport/bufferviewoverlayfilter.cpp +++ b/src/uisupport/bufferviewoverlayfilter.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,7 +15,7 @@ * 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 "bufferviewoverlayfilter.h" @@ -26,7 +26,7 @@ BufferViewOverlayFilter::BufferViewOverlayFilter(QAbstractItemModel *model, BufferViewOverlay *overlay) : QSortFilterProxyModel(model), - _overlay(0) + _overlay(nullptr) { setOverlay(overlay); setSourceModel(model); @@ -41,7 +41,7 @@ void BufferViewOverlayFilter::setOverlay(BufferViewOverlay *overlay) return; if (_overlay) { - disconnect(_overlay, 0, this, 0); + disconnect(_overlay, nullptr, this, nullptr); } _overlay = overlay; @@ -51,15 +51,15 @@ void BufferViewOverlayFilter::setOverlay(BufferViewOverlay *overlay) return; } - connect(overlay, SIGNAL(destroyed()), this, SLOT(overlayDestroyed())); - connect(overlay, SIGNAL(hasChanged()), this, SLOT(invalidate())); + connect(overlay, &QObject::destroyed, this, &BufferViewOverlayFilter::overlayDestroyed); + connect(overlay, &BufferViewOverlay::hasChanged, this, &QSortFilterProxyModel::invalidate); invalidate(); } void BufferViewOverlayFilter::overlayDestroyed() { - setOverlay(0); + setOverlay(nullptr); }