##// END OF EJS Templates
Adds actions for items in the DataSourceWidget...
Adds actions for items in the DataSourceWidget For each item will be associated actions (generated from the model of the item) that will be displayed in the menu when right clicking on the item in the tree

File last commit:

r110:1002063c9aa2
r142:11579fae1cc2
Show More
VariableInspectorWidget.cpp
14 lines | 316 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorWidget.cpp
#include <Variable/VariableInspectorWidget.h>
#include <ui_VariableInspectorWidget.h>
VariableInspectorWidget::VariableInspectorWidget(QWidget *parent)
: QWidget{parent}, ui{new Ui::VariableInspectorWidget}
{
ui->setupUi(this);
}
VariableInspectorWidget::~VariableInspectorWidget()
{
delete ui;
}