Changeset 269 in flair-src for trunk/tools/FlairGCS/src/TabWidget.cpp


Ignore:
Timestamp:
10/04/18 13:53:11 (6 years ago)
Author:
Sanahuja Guillaume
Message:

flairgcs:
speed up processing time when receiving datas from uav
triger watchdog while receiving datas from uav
(avoids connection lost in uav)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/FlairGCS/src/TabWidget.cpp

    r15 r269  
    2828TabWidget::~TabWidget() {}
    2929
    30 void TabWidget::XmlEvent(QDomElement dom) {
    31   QString type = dom.tagName();
    32   QString name = dom.attribute("name");
    33   int position = dom.attribute("position").toInt();
     30void TabWidget::XmlEvent(QDomElement *dom) {
     31  QString type = dom->tagName();
     32  QString name = dom->attribute("name");
     33  int position = dom->attribute("position").toInt();
    3434
    3535  if (type == "Tab") {
Note: See TracChangeset for help on using the changeset viewer.