missed super

This commit is contained in:
Pfeil, Scott Robert 2019-04-15 15:09:25 -04:00
parent e2e6cbabf6
commit 7343f24e9b

View File

@ -13,6 +13,7 @@ open class MVMCoreUIDelegateObject: DelegateObject {
public weak var buttonDelegate: ButtonDelegateProtocol?
open override func setAll(withDelegate delegate: Any) {
super.setAll(withDelegate: delegate)
formValidationProtocol = delegate as? FormValidationProtocol
buttonDelegate = delegate as? ButtonDelegateProtocol
}