##// END OF EJS Templates
Add mac support in cmake
Add mac support in cmake

File last commit:

r890:9b45c5936f92
r911:f9b30b97e672
Show More
VariableInspectorTableView.cpp
13 lines | 464 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"
VariableInspectorTableView::VariableInspectorTableView(QWidget *parent) : QTableView(parent) {}
void VariableInspectorTableView::startDrag(Qt::DropActions supportedActions)
{
// Resets the drag&drop operations before it's starting
sqpApp->dragDropHelper().resetDragAndDrop();
QTableView::startDrag(supportedActions);
}