mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[coding style] Make some methods const
This commit is contained in:
@@ -78,7 +78,7 @@ bool ValuesParameterController::handleEvent(Ion::Events::Event event) {
|
||||
return false;
|
||||
}
|
||||
|
||||
int ValuesParameterController::numberOfRows() {
|
||||
int ValuesParameterController::numberOfRows() const {
|
||||
return k_totalNumberOfCell;
|
||||
};
|
||||
|
||||
@@ -89,7 +89,7 @@ HighlightCell * ValuesParameterController::reusableCell(int index) {
|
||||
return cells[index];
|
||||
}
|
||||
|
||||
int ValuesParameterController::reusableCellCount() {
|
||||
int ValuesParameterController::reusableCellCount() const {
|
||||
return k_totalNumberOfCell;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user