X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fawaylogfilter.cpp;h=69694cdaea7778aa342560cc54a6d7be0116e1b1;hp=882a7af9dde23e779ec3db396cfee7f01de0090f;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805 diff --git a/src/qtui/awaylogfilter.cpp b/src/qtui/awaylogfilter.cpp index 882a7af9..69694cda 100644 --- a/src/qtui/awaylogfilter.cpp +++ b/src/qtui/awaylogfilter.cpp @@ -19,15 +19,14 @@ ***************************************************************************/ #include "awaylogfilter.h" + #include "clientignorelistmanager.h" -AwayLogFilter::AwayLogFilter(MessageModel *model, QObject *parent) +AwayLogFilter::AwayLogFilter(MessageModel* model, QObject* parent) : ChatMonitorFilter(model, parent) -{ -} +{} - -bool AwayLogFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const +bool AwayLogFilter::filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const { Q_UNUSED(sourceParent) @@ -53,15 +52,15 @@ bool AwayLogFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourcePar // ignorelist handling // only match if message is not flagged as server msg if (!(flags & Message::ServerMsg) && Client::ignoreListManager() - && Client::ignoreListManager()->match(source_index.data(MessageModel::MessageRole).value(), Client::networkModel()->networkName(bufferId))) { + && Client::ignoreListManager()->match(source_index.data(MessageModel::MessageRole).value(), + Client::networkModel()->networkName(bufferId))) { return false; } return true; } - -QVariant AwayLogFilter::data(const QModelIndex &index, int role) const +QVariant AwayLogFilter::data(const QModelIndex& index, int role) const { if (role != MessageModel::FlagsRole) return ChatMonitorFilter::data(index, role);