summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-08-16 18:23:49 -0400
committerBrian Potchik <brian@vector35.com>2024-08-16 18:23:49 -0400
commit0c93bebaec56154f15d4b4d520860a92523df357 (patch)
tree8a19bd01a38c6bff6fafbe0bcc86a99f1aea58f6 /view
parentde9584d8710144e352dbf09c5c2d1d46751d2f20 (diff)
Enable workflows by default.
Diffstat (limited to 'view')
-rw-r--r--view/macho/machoview.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp
index 40745e0e..ad20ebaf 100644
--- a/view/macho/machoview.cpp
+++ b/view/macho/machoview.cpp
@@ -1861,8 +1861,7 @@ bool MachoView::InitializeHeader(MachOHeader& header, bool isMainHeader, uint64_
{
if (programSettings->Get<bool>("corePlugins.workflows.objc"))
{
- programSettings->Set("workflows.enable", true, this);
- programSettings->Set("workflows.functionWorkflow", "core.function.objectiveC", this);
+ programSettings->Set("analysis.workflows.functionWorkflow", "core.function.objectiveC", this);
}
}
}
@@ -3912,8 +3911,7 @@ Ref<Settings> MachoViewType::GetLoadSettingsForData(BinaryView* data)
{
if (programSettings->Get<bool>("corePlugins.workflows.objc"))
{
- programSettings->Set("workflows.enable", true, viewRef);
- programSettings->Set("workflows.functionWorkflow", "core.function.objectiveC", viewRef);
+ programSettings->Set("analysis.workflows.functionWorkflow", "core.function.objectiveC", viewRef);
}
}
}