##// END OF EJS Templates
Modification of the testCosinusAcquisition to test with 2Millions point...
Modification of the testCosinusAcquisition to test with 2Millions point instead of 20 millions that could make failed tests on windows and on a debug mode

File last commit:

r912:fedc6e2cf64d
r1073:03df095ebc87
Show More
VariableInspectorTableView.cpp
15 lines | 467 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
#include "Variable/VariableInspectorTableView.h"
#include "DragAndDrop/DragDropHelper.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->dragDropHelper().resetDragAndDrop();
QTableView::startDrag(supportedActions);
}