File tree 1 file changed +3
-2
lines changed
examples/dishwasher-app/silabs/include
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class OperationalStateDelegate : public Delegate
67
67
void SetEndpointId (EndpointId endpointId);
68
68
69
69
private:
70
- const GenericOperationalState rvcOpStateList [4 ] = {
70
+ const GenericOperationalState dishwasherOpStateList [4 ] = {
71
71
GenericOperationalState (to_underlying (OperationalStateEnum::kStopped )),
72
72
GenericOperationalState (to_underlying (OperationalStateEnum::kRunning )),
73
73
GenericOperationalState (to_underlying (OperationalStateEnum::kPaused )),
@@ -76,7 +76,8 @@ class OperationalStateDelegate : public Delegate
76
76
77
77
EndpointId mEndpointId ;
78
78
79
- DataModel::List<const GenericOperationalState> mOperationalStateList = Span<const GenericOperationalState>(rvcOpStateList);
79
+ DataModel::List<const GenericOperationalState> mOperationalStateList =
80
+ Span<const GenericOperationalState>(dishwasherOpStateList);
80
81
const Span<const CharSpan> mOperationalPhaseList ;
81
82
};
82
83
You can’t perform that action at this time.
0 commit comments