diff options
| author | Brian Potchik <brian@vector35.com> | 2023-11-24 13:23:11 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2023-11-24 13:23:11 -0500 |
| commit | 2127e6bee8f6bf8e7ef6a742380ba822bad60956 (patch) | |
| tree | b2bc0f686406c96c7ca3aad174e576644aead62e /ui | |
| parent | f7fc9a16455913bc97b969a653e06a00dfa9eb23 (diff) | |
Add Symbolic symbols type.
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/symbollist.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/symbollist.h b/ui/symbollist.h index f0f5ffa8..21faa2ba 100644 --- a/ui/symbollist.h +++ b/ui/symbollist.h @@ -147,8 +147,7 @@ class BINARYNINJAUIAPI SymbolListModel : public QAbstractItemModel, public Binar bool isFunc() const { - return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol) - || (getType() == LibraryFunctionSymbol); + return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol) || (getType() == LibraryFunctionSymbol); } uint64_t getStart() const { return address; } std::string getName() const { return name; } |
