X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fawaylogview.cpp;h=c2029351ad6068410dda72075fee429ebe679f79;hp=444633ac2aa8dd4cac17a43c1d02d137278b01d0;hb=HEAD;hpb=e50ae7a06fc4e5d3a911c361d30953410deab609 diff --git a/src/qtui/awaylogview.cpp b/src/qtui/awaylogview.cpp index 444633ac..e49bb534 100644 --- a/src/qtui/awaylogview.cpp +++ b/src/qtui/awaylogview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,18 +23,18 @@ #include #include +#include "action.h" #include "awaylogfilter.h" #include "chatlinemodel.h" #include "chatscene.h" -AwayLogView::AwayLogView(AwayLogFilter *filter, QWidget *parent) +AwayLogView::AwayLogView(AwayLogFilter* filter, QWidget* parent) : ChatMonitorView(filter, parent) { setWindowTitle(tr("Away Log")); } - -void AwayLogView::addActionsToMenu(QMenu *menu, const QPointF &pos) +void AwayLogView::addActionsToMenu(QMenu* menu, const QPointF& pos) { ChatView::addActionsToMenu(menu, pos); if (!menu->isEmpty()) @@ -43,14 +43,16 @@ void AwayLogView::addActionsToMenu(QMenu *menu, const QPointF &pos) if (scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) { menu->addSeparator(); - QAction *showNetworkAction = menu->addAction(tr("Show Network Name"), this, SLOT(showFieldsChanged(bool))); + auto* showNetworkAction = new Action(tr("Show Network Name"), menu, this, &AwayLogView::showFieldsChanged); showNetworkAction->setCheckable(true); showNetworkAction->setChecked(filter()->showFields() & ChatMonitorFilter::NetworkField); showNetworkAction->setData(ChatMonitorFilter::NetworkField); + menu->addAction(showNetworkAction); - QAction *showBufferAction = menu->addAction(tr("Show Buffer Name"), this, SLOT(showFieldsChanged(bool))); + auto* showBufferAction = new Action(tr("Show Buffer Name"), menu, this, &AwayLogView::showFieldsChanged); showBufferAction->setCheckable(true); showBufferAction->setChecked(filter()->showFields() & ChatMonitorFilter::BufferField); showBufferAction->setData(ChatMonitorFilter::BufferField); + menu->addAction(showBufferAction); } }