VariableInspectorTableView.cpp
13 lines
| 464 B
| text/x-c
|
CppLexer
r877 | #include "Variable/VariableInspectorTableView.h" | |||
r884 | #include "DragAndDrop/DragDropHelper.h" | |||
r877 | #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); | ||||
} | ||||