! updates the selected var name of a Matio file when the table widget item is selected */
| 61 | updates the selected var name of a Matio file when the table widget item is selected |
| 62 | */ |
| 63 | void MatioOptionsWidget::selectionChanged() { |
| 64 | DEBUG(Q_FUNC_INFO) |
| 65 | // QDEBUG(Q_FUNC_INFO << ", SELECTED ITEMS =" << ui.twContent->selectedItems()); |
| 66 | |
| 67 | if (ui.twContent->selectedItems().isEmpty()) |
| 68 | return; |
| 69 | |
| 70 | m_fileWidget->refreshPreview(); |
| 71 | } |
| 72 | |
| 73 | /*! |
| 74 | return list of selected Matio variable names |
nothing calls this directly
no test coverage detected