##// END OF EJS Templates
Changes the name of the mokc plugin nodes to facilitate their access in the merged tree
Changes the name of the mokc plugin nodes to facilitate their access in the merged tree

File last commit:

r913:fedc6e2cf64d
r1083:a94048bf05e3
Show More
VariableInspectorTableView.cpp
15 lines | 467 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r883 #include "Variable/VariableInspectorTableView.h"
Moves the DragDropHelper file
r890 #include "DragAndDrop/DragDropHelper.h"
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r883 #include "SqpApplication.h"
Fix format for linux
r913 VariableInspectorTableView::VariableInspectorTableView(QWidget *parent) : QTableView(parent)
{
}
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r883
void VariableInspectorTableView::startDrag(Qt::DropActions supportedActions)
{
// Resets the drag&drop operations before it's starting
sqpApp->dragDropHelper().resetDragAndDrop();
QTableView::startDrag(supportedActions);
}