| 225 | } |
| 226 | |
| 227 | void WorksheetPreviewWidget::updateText() { |
| 228 | auto* w = dynamic_cast<Worksheet*>(QObject::sender()); |
| 229 | if (!w) |
| 230 | return; |
| 231 | |
| 232 | ui.lwPreview->item(indexOfWorksheet(w))->setText(w->name()); |
| 233 | } |
| 234 | |
| 235 | //************************************************************* |
| 236 | //*************** helper functions and events ***************** |
no test coverage detected