summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2023-11-24 13:23:11 -0500
committerBrian Potchik <brian@vector35.com>2023-11-24 13:23:11 -0500
commit2127e6bee8f6bf8e7ef6a742380ba822bad60956 (patch)
treeb2bc0f686406c96c7ca3aad174e576644aead62e /ui
parentf7fc9a16455913bc97b969a653e06a00dfa9eb23 (diff)
Add Symbolic symbols type.
Diffstat (limited to 'ui')
-rw-r--r--ui/symbollist.h3
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; }