* Changes the text of a specific Text object in the list. * @param row Row number. * @param column Column number. * @param text Text string. */
| 187 | * @param text Text string. |
| 188 | */ |
| 189 | void TextList::setCellText(size_t row, size_t column, const std::wstring &text) |
| 190 | { |
| 191 | _texts[row][column]->setText(text); |
| 192 | _redraw = true; |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Returns the X position of a specific text column in the list. |
no test coverage detected