##// END OF EJS Templates
Handles right clicking on the tree of the data sources...
Handles right clicking on the tree of the data sources The action generates the menu associated to the selected item and shows it

File last commit:

r110:1002063c9aa2
r143:7b4ea0e1482b
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;
}