summaryrefslogtreecommitdiff
path: root/ui/ilchooser.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2024-08-22 12:55:49 -0600
committerRusty Wagner <rusty.wagner@gmail.com>2024-10-21 13:56:55 -0400
commitd8e3001e535fad178c621ff07418f81f25123dc4 (patch)
tree54c03cef2f0bdfd9a3b6df4334c81becb63e4993 /ui/ilchooser.h
parent0e281a30d73c0f31ef9442fef0346779164231ad (diff)
Allow multiple high level representations for display, add Pseudo Rust and a Pseudo Python example plugin
Diffstat (limited to 'ui/ilchooser.h')
-rw-r--r--ui/ilchooser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/ilchooser.h b/ui/ilchooser.h
index e57b82a6..561e264f 100644
--- a/ui/ilchooser.h
+++ b/ui/ilchooser.h
@@ -22,10 +22,10 @@ class BINARYNINJAUIAPI ILChooserWidget : public MenuHelper
public:
ILChooserWidget(QWidget* parent, UIActionHandler* handler, bool longDescription);
- void updateStatus(BNFunctionGraphType current);
+ void updateStatus(const BinaryNinja::FunctionViewType& current);
- static QString shortNameForILType(BNFunctionGraphType type);
- static QString longNameForILType(BNFunctionGraphType type);
+ static QString shortNameForILType(const BinaryNinja::FunctionViewType& type);
+ static QString longNameForILType(const BinaryNinja::FunctionViewType& type);
protected:
virtual void showMenu() override;