* Returns the text of a specific Text object in the list. * @param row Row number. * @param column Column number. * @return Text string. */
| 176 | * @return Text string. |
| 177 | */ |
| 178 | std::wstring TextList::getCellText(size_t row, size_t column) const |
| 179 | { |
| 180 | return _texts[row][column]->getText(); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Changes the text of a specific Text object in the list. |
no test coverage detected