* Changes the color of a specific Text object in the list. * @param row Row number. * @param column Column number. * @param color Text color. */
| 150 | * @param color Text color. |
| 151 | */ |
| 152 | void TextList::setCellColor(size_t row, size_t column, Uint8 color) |
| 153 | { |
| 154 | _texts[row][column]->setColor(color); |
| 155 | _redraw = true; |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Changes the text color of a whole row in the list. |
no test coverage detected