@@ -29,9 +29,11 @@ struct EPrefDelegate : public Delegate
29
29
EPrefDelegate ();
30
30
virtual ~EPrefDelegate ();
31
31
32
- CHIP_ERROR GetEnergyBalanceAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep, chip::MutableCharSpan & aOutLabel) override ;
32
+ CHIP_ERROR GetEnergyBalanceAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep,
33
+ chip::MutableCharSpan & aOutLabel) override ;
33
34
CHIP_ERROR GetEnergyPriorityAtIndex (chip::EndpointId aEndpoint, size_t aIndex, EnergyPriorityEnum & priority) override ;
34
- CHIP_ERROR GetLowPowerModeSensitivityAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep, chip::MutableCharSpan & aOutLabel) override ;
35
+ CHIP_ERROR GetLowPowerModeSensitivityAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep,
36
+ chip::MutableCharSpan & aOutLabel) override ;
35
37
36
38
size_t GetNumEnergyBalances (chip::EndpointId aEndpoint) override ;
37
39
size_t GetNumLowPowerModeSensitivities (chip::EndpointId aEndpoint) override ;
@@ -60,7 +62,8 @@ size_t EPrefDelegate::GetNumLowPowerModeSensitivities(chip::EndpointId aEndpoint
60
62
}
61
63
62
64
CHIP_ERROR
63
- EPrefDelegate::GetEnergyBalanceAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep, chip::MutableCharSpan & aOutLabel)
65
+ EPrefDelegate::GetEnergyBalanceAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep,
66
+ chip::MutableCharSpan & aOutLabel)
64
67
{
65
68
if (aIndex < GetNumEnergyBalances (aEndpoint))
66
69
{
@@ -86,7 +89,8 @@ EPrefDelegate::GetEnergyPriorityAtIndex(chip::EndpointId aEndpoint, size_t aInde
86
89
}
87
90
88
91
CHIP_ERROR
89
- EPrefDelegate::GetLowPowerModeSensitivityAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep, chip::MutableCharSpan & aOutLabel)
92
+ EPrefDelegate::GetLowPowerModeSensitivityAtIndex (chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep,
93
+ chip::MutableCharSpan & aOutLabel)
90
94
{
91
95
if (aIndex < GetNumLowPowerModeSensitivities (aEndpoint))
92
96
{
0 commit comments