##// END OF EJS Templates
Adds read compatibility for local AMDA server...
Adds read compatibility for local AMDA server The local AMDA server uses another regex than the default server to read the units in x. We manage the compatibility by adding in the parser the possibility of testing several regexes to read a property

File last commit:

r1075:029fbf916457
r1121:98220c931c83
Show More
VariableInspectorTableView.cpp
15 lines | 481 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
r877 #include "Variable/VariableInspectorTableView.h"
Rename "DragDropHelper" in "DragDropGuiController"
r1075 #include "DragAndDrop/DragDropGuiController.h"
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r877 #include "SqpApplication.h"
Fix format for linux
r912 VariableInspectorTableView::VariableInspectorTableView(QWidget *parent) : QTableView(parent)
{
}
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r877
void VariableInspectorTableView::startDrag(Qt::DropActions supportedActions)
{
// Resets the drag&drop operations before it's starting
Rename "DragDropHelper" in "DragDropGuiController"
r1075 sqpApp->dragDropGuiController().resetDragAndDrop();
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r877 QTableView::startDrag(supportedActions);
}