X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Faction.cpp;h=55427392dd58fd16e76a7c9a5ea6e49d1ddf538b;hp=216cac846f0b80fd1dfce35cdf3dd1d9118bde0c;hb=1a45f16a9734820fba42fe1db3f38dd1eee49df6;hpb=c878493af33f5d01e07360bebdbe06131ded5015 diff --git a/src/uisupport/action.cpp b/src/uisupport/action.cpp index 216cac84..55427392 100644 --- a/src/uisupport/action.cpp +++ b/src/uisupport/action.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 * @@ -25,22 +25,14 @@ #include Action::Action(QObject *parent) -#ifdef HAVE_KDE4 - : KAction(parent) -#else : QWidgetAction(parent) -#endif { init(); } Action::Action(const QString &text, QObject *parent, const QObject *receiver, const char *slot, const QKeySequence &shortcut) -#ifdef HAVE_KDE4 - : KAction(parent) -#else : QWidgetAction(parent) -#endif { init(); setText(text); @@ -51,11 +43,7 @@ Action::Action(const QString &text, QObject *parent, const QObject *receiver, co Action::Action(const QIcon &icon, const QString &text, QObject *parent, const QObject *receiver, const char *slot, const QKeySequence &shortcut) -#ifdef HAVE_KDE4 - : KAction(parent) -#else : QWidgetAction(parent) -#endif { init(); setIcon(icon); @@ -66,9 +54,6 @@ Action::Action(const QIcon &icon, const QString &text, QObject *parent, const QO } -#ifdef HAVE_KDE4 -void Action::init() {} -#else void Action::init() { connect(this, SIGNAL(triggered(bool)), this, SLOT(slotTriggered())); @@ -117,12 +102,9 @@ void Action::setShortcut(const QKeySequence &key, ShortcutTypes type) { Q_ASSERT(type); - if (type & DefaultShortcut) + if (type & DefaultShortcut) { setProperty("defaultShortcuts", QVariant::fromValue(QList() << key)); - + } if (type & ActiveShortcut) QAction::setShortcut(key); } - - -#endif /* HAVE_KDE4 */