From 5947e5c1ade83b90cbdfe80ea5296f71ff2d1a85 Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Thu, 24 Jun 2021 12:12:54 -0400 Subject: [PATCH] updated name --- MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift b/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift index e9ffce2c..d16c6cd6 100644 --- a/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift +++ b/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift @@ -9,7 +9,7 @@ /// Protocol to apply to any model of a UI Control with a binary on/off nature. /// /// Example classes: Checkbox or Toggle. -@objc public protocol SelectableMoleculeModel: AnyObject { +@objc public protocol SelectableMoleculeModelProtocol: AnyObject { @objc dynamic var selected: Bool { get set } }