[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

@@ -20,8 +20,8 @@ public:
virtual I18n::Message emptyMessage() override;
virtual Responder * defaultController() override;
/* TableViewDataSource */
int numberOfRows() override;
int numberOfColumns() override;
int numberOfRows() const override;
int numberOfColumns() const override;
void willDisplayCellAtLocation(HighlightCell * cell, int i, int j) override;
KDCoordinate columnWidth(int i) override;
KDCoordinate rowHeight(int j) override;