X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Faction.cpp;h=4d83d8c8a31dff9b69c15aa412dcb1af13b27292;hp=c222dc19f87105a0e554cb97b06a4084b520e2c9;hb=a65f42197839da536975b3e2858eedcef420035f;hpb=1cb02004ee5973b89368bd84f234d4652794690d diff --git a/src/uisupport/action.cpp b/src/uisupport/action.cpp index c222dc19..4d83d8c8 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-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -98,11 +98,16 @@ void Action::setShortcutConfigurable(bool b) QKeySequence Action::shortcut(ShortcutTypes type) const { Q_ASSERT(type); - if (type == DefaultShortcut) + if (type == DefaultShortcut) { +#if QT_VERSION < 0x050000 return property("defaultShortcut").value(); +#else + auto sequence = property("defaultShortcuts").value>(); + return sequence.isEmpty() ? QKeySequence() : sequence.first(); +#endif + } - if (shortcuts().count()) return shortcuts().value(0); - return QKeySequence(); + return shortcuts().isEmpty() ? QKeySequence() : shortcuts().first(); } @@ -116,9 +121,13 @@ void Action::setShortcut(const QKeySequence &key, ShortcutTypes type) { Q_ASSERT(type); - if (type & DefaultShortcut) + if (type & DefaultShortcut) { +#if QT_VERSION < 0x050000 setProperty("defaultShortcut", key); - +#else + setProperty("defaultShortcuts", QVariant::fromValue(QList() << key)); +#endif + } if (type & ActiveShortcut) QAction::setShortcut(key); }