VariableInspectorTableView.cpp
15 lines
| 481 B
| text/x-c
|
CppLexer
r877 | #include "Variable/VariableInspectorTableView.h" | |||
r1075 | #include "DragAndDrop/DragDropGuiController.h" | |||
r877 | #include "SqpApplication.h" | |||
r912 | VariableInspectorTableView::VariableInspectorTableView(QWidget *parent) : QTableView(parent) | |||
{ | ||||
} | ||||
r877 | ||||
void VariableInspectorTableView::startDrag(Qt::DropActions supportedActions) | ||||
{ | ||||
// Resets the drag&drop operations before it's starting | ||||
r1075 | sqpApp->dragDropGuiController().resetDragAndDrop(); | |||
r877 | QTableView::startDrag(supportedActions); | |||
} | ||||