##// END OF EJS Templates
add missing delete ui
perrinel -
r232:cc34eb0c628d
parent child
Show More
@@ -49,6 +49,11 DataSourceWidget::DataSourceWidget(QWidget *parent) : QWidget{parent}, ui{new Ui
49 &DataSourceWidget::onTreeMenuRequested);
49 &DataSourceWidget::onTreeMenuRequested);
50 }
50 }
51
51
52 DataSourceWidget::~DataSourceWidget() noexcept
53 {
54 delete ui;
55 }
56
52 void DataSourceWidget::addDataSource(DataSourceItem *dataSource) noexcept
57 void DataSourceWidget::addDataSource(DataSourceItem *dataSource) noexcept
53 {
58 {
54 // Creates the item associated to the source and adds it to the tree widget. The tree widget
59 // Creates the item associated to the source and adds it to the tree widget. The tree widget
General Comments 0
You need to be logged in to leave comments. Login now