From 73d4094f1d3f666c30f7533231261eb375cef6e8 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 14 Dec 2015 14:43:19 -0500 Subject: Plugin command UI --- binaryninjaapi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 59b4379f..c7bb0dd7 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1473,7 +1473,7 @@ namespace BinaryNinja std::string GetName() const { return m_command.name; } std::string GetDescription() const { return m_command.description; } - bool IsValid(const PluginCommandContext& ctxt); - void Execute(const PluginCommandContext& ctxt); + bool IsValid(const PluginCommandContext& ctxt) const; + void Execute(const PluginCommandContext& ctxt) const; }; } -- cgit v1.3.1