X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuisupport%2Fbufferviewoverlayfilter.cpp;h=df0d3a5522ec46353bb9a2f226a9233bce36903b;hb=2c8434f74c68194d56f2084f637419123e61d18b;hp=d607bf14d60f2328d32a4edee95a7c73c948849a;hpb=0a43227b8cd44625f4881cc1545d42c8c8a4876c;p=quassel.git diff --git a/src/uisupport/bufferviewoverlayfilter.cpp b/src/uisupport/bufferviewoverlayfilter.cpp index d607bf14..df0d3a55 100644 --- a/src/uisupport/bufferviewoverlayfilter.cpp +++ b/src/uisupport/bufferviewoverlayfilter.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 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 * @@ -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); }