X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Factioncollection.cpp;h=50001262c67665cd75a98faa21e29fc908db3588;hp=b862ae8501385685cf12eff10b27aa01b24c026e;hb=e2188dc438be6f3eb0d9cdf47d28821aefe9835e;hpb=e50ae7a06fc4e5d3a911c361d30953410deab609 diff --git a/src/uisupport/actioncollection.cpp b/src/uisupport/actioncollection.cpp index b862ae85..50001262 100644 --- a/src/uisupport/actioncollection.cpp +++ b/src/uisupport/actioncollection.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -20,10 +20,11 @@ * Parts of this implementation are based on KDE's KActionCollection. * ***************************************************************************/ -#ifndef HAVE_KDE4 +#ifndef HAVE_KDE #include #include +#include #include "actioncollection.h" @@ -36,11 +37,6 @@ ActionCollection::ActionCollection(QObject *parent) : QObject(parent) } -ActionCollection::~ActionCollection() -{ -} - - void ActionCollection::clear() { _actionByName.clear(); @@ -72,7 +68,7 @@ Action *ActionCollection::addAction(const QString &name, Action *action) Action *ActionCollection::addAction(const QString &name, const QObject *receiver, const char *member) { - Action *a = new Action(this); + auto *a = new Action(this); if (receiver && member) connect(a, SIGNAL(triggered(bool)), receiver, member); return addAction(name, a); @@ -136,7 +132,7 @@ void ActionCollection::removeAction(QAction *action) QAction *ActionCollection::takeAction(QAction *action) { if (!unlistAction(action)) - return 0; + return nullptr; foreach(QWidget *widget, _associatedWidgets) { widget->removeAction(action); @@ -155,7 +151,7 @@ void ActionCollection::readSettings() foreach(const QString &name, _actionByName.keys()) { if (!savedShortcuts.contains(name)) continue; - Action *action = qobject_cast(_actionByName.value(name)); + auto *action = qobject_cast(_actionByName.value(name)); if (action) action->setShortcut(s.loadShortcut(name), Action::ActiveShortcut); } @@ -166,7 +162,7 @@ void ActionCollection::writeSettings() const { ShortcutSettings s; foreach(const QString &name, _actionByName.keys()) { - Action *action = qobject_cast(_actionByName.value(name)); + auto *action = qobject_cast(_actionByName.value(name)); if (!action) continue; if (!action->isShortcutConfigurable()) @@ -180,7 +176,7 @@ void ActionCollection::writeSettings() const void ActionCollection::slotActionTriggered() { - QAction *action = qobject_cast(sender()); + auto *action = qobject_cast(sender()); if (action) emit actionTriggered(action); } @@ -188,7 +184,7 @@ void ActionCollection::slotActionTriggered() void ActionCollection::slotActionHovered() { - QAction *action = qobject_cast(sender()); + auto *action = qobject_cast(sender()); if (action) emit actionHovered(action); } @@ -197,36 +193,24 @@ void ActionCollection::slotActionHovered() void ActionCollection::actionDestroyed(QObject *obj) { // remember that this is not an QAction anymore at this point - QAction *action = static_cast(obj); + auto *action = static_cast(obj); unlistAction(action); } -#if QT_VERSION >= 0x050000 void ActionCollection::connectNotify(const QMetaMethod &signal) -#else -void ActionCollection::connectNotify(const char *signal) -#endif { if (_connectHovered && _connectTriggered) return; -#if QT_VERSION >= 0x050000 if (QMetaMethod::fromSignal(&ActionCollection::actionHovered) == signal) { -#else - if (QMetaObject::normalizedSignature(SIGNAL(actionHovered(QAction *))) == signal) { -#endif if (!_connectHovered) { _connectHovered = true; foreach(QAction* action, actions()) connect(action, SIGNAL(hovered()), SLOT(slotActionHovered())); } } -#if QT_VERSION >= 0x050000 else if (QMetaMethod::fromSignal(&ActionCollection::actionTriggered) == signal) { -#else - else if (QMetaObject::normalizedSignature(SIGNAL(actionTriggered(QAction *))) == signal) { -#endif if (!_connectTriggered) { _connectTriggered = true; foreach(QAction* action, actions()) @@ -305,4 +289,4 @@ bool ActionCollection::unlistAction(QAction *action) } -#endif /* HAVE_KDE4 */ +#endif /* HAVE_KDE */