| 10 | #include <QtWidgets/QTreeWidgetItem> |
| 11 | |
| 12 | ImageTreeBaseWidget::ImageTreeBaseWidget(QWidget* parent) |
| 13 | : QTreeWidget(parent), |
| 14 | lock(false) |
| 15 | { |
| 16 | QObject::connect(&EventManager::getInstance(), SIGNAL(repositoryRundown(const RepositoryRundownEvent&)), this, SLOT(repositoryRundown(const RepositoryRundownEvent&))); |
| 17 | } |
| 18 | |
| 19 | void ImageTreeBaseWidget::repositoryRundown(const RepositoryRundownEvent& event) |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected