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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user