##// END OF EJS Templates
add {} missing
add {} missing

File last commit:

r105:1002063c9aa2
r113:c1f92d4a498b
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;
}