##// END OF EJS Templates
Merge branch 'develop' of...
Merge branch 'develop' of https://perrinel@hephaistos.lpp.polytechnique.fr/rhodecode/GIT_REPOSITORIES/LPP/Users/mperrinel/SciQLop-fork into develop Conflicts: core/src/Catalogue/CatalogueController.cpp

File last commit:

r1075:029fbf916457
r1261:7185ea8182da merge
Show More
VariableInspectorTableView.cpp
15 lines | 481 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
#include "Variable/VariableInspectorTableView.h"
#include "DragAndDrop/DragDropGuiController.h"
#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->dragDropGuiController().resetDragAndDrop();
QTableView::startDrag(supportedActions);
}