| 201 | } |
| 202 | |
| 203 | QTableWidgetItem* TableView::setAtBottomRow(const QString& text, size_t column_index, const QColor& background, const QColor& foreground) |
| 204 | { |
| 205 | QTableWidgetItem* item = itemPrototype()->clone(); |
| 206 | item->setText(text); |
| 207 | return setAtBottomRow(item, column_index, background, foreground); |
| 208 | } |
| 209 | |
| 210 | QTableWidgetItem* TableView::setAtBottomRow(const char* text, size_t column_index, const QColor& background, const QColor& foreground) |
| 211 | { |