diff options
| author | Andrew Lamoureux <andrew@vector35.com> | 2019-03-21 17:47:49 -0400 |
|---|---|---|
| committer | Andrew Lamoureux <andrew@vector35.com> | 2019-03-21 17:47:49 -0400 |
| commit | a79cc606a332377f5923f085dee953871ef72a05 (patch) | |
| tree | bacf2cb39d781e94dd62788a57746e0dc922c05d /ui | |
| parent | ff646891f9066a9c67d670e5a36eaad39c29b461 (diff) | |
| parent | 4d4dcbadf59bcd96d50bb3db541fc01b7267718f (diff) | |
Merge branch 'dev' of github.com:Vector35/binaryninja-api into dev
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/action.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/action.h b/ui/action.h index b3050717..e61164eb 100644 --- a/ui/action.h +++ b/ui/action.h @@ -73,6 +73,7 @@ struct BINARYNINJAUIAPI UIAction static void registerAction(const QString& name, const QKeySequence& defaultKeyBinding = QKeySequence()); static void registerAction(const QString& name, const QList<QKeySequence>& defaultKeyBinding); + static void unregisterAction(const QString& name); static void registerTransformActions(); static void registerPluginCommandActions(); @@ -223,6 +224,7 @@ public: QWidget* widget() { return m_handlerWidget; } static void updateActionBindings(const QString& name); + static bool isActionBoundToAnyHandler(const QString& name); static void addGlobalMenuAction(const QString& name); static void removeGlobalMenuAction(const QString& name); |
