[coding style] Make some methods const

This commit is contained in:
Léa Saviot
2019-09-09 20:05:14 +02:00
parent fcd82400f5
commit 4caf9f5197
103 changed files with 171 additions and 173 deletions

View File

@@ -38,7 +38,7 @@ bool FunctionParameterController::handleEvent(Ion::Events::Event event) {
return false;
}
int FunctionParameterController::numberOfRows() {
int FunctionParameterController::numberOfRows() const {
return k_totalNumberOfCell;
};
@@ -53,7 +53,7 @@ HighlightCell * FunctionParameterController::reusableCell(int index) {
return cells[index];
}
int FunctionParameterController::reusableCellCount() {
int FunctionParameterController::reusableCellCount() const {
return k_totalNumberOfCell;
}