summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/symbollist.h2
-rw-r--r--ui/theme.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/ui/symbollist.h b/ui/symbollist.h
index aa61abf3..21f30d0b 100644
--- a/ui/symbollist.h
+++ b/ui/symbollist.h
@@ -100,7 +100,7 @@ public:
return false;
}
- bool isFunc() const { return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol); }
+ bool isFunc() const { return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol) || (getType() == LibraryFunctionSymbol); }
uint64_t getStart() const { return sym->GetAddress(); }
std::string getName() const { return name; }
std::string getRawName() const { return rawName; }
diff --git a/ui/theme.h b/ui/theme.h
index ed40aa2e..462e38ed 100644
--- a/ui/theme.h
+++ b/ui/theme.h
@@ -98,7 +98,8 @@ enum ThemeColor
FeatureMapUnicodeStringColor,
FeatureMapFunctionColor,
FeatureMapImportColor,
- FeatureMapExternColor
+ FeatureMapExternColor,
+ FeatureMapLibraryColor
};
void BINARYNINJAUIAPI initThemes();