Changeset 61 in flair-src for branches/mavlink/tools/FlairGCS/src


Ignore:
Timestamp:
07/29/16 15:32:52 (8 years ago)
Author:
Thomas Fuhrmann
Message:

Comment the debug cout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mavlink/tools/FlairGCS/src/ListWidget.cpp

    r60 r61  
    1010#include <QListWidgetItem>
    1111#include <QPalette>
     12#include <sstream>
    1213
    13 #include <iostream>
    14 #include <sstream>
     14// #include <iostream>
    1515
    1616ListWidget::ListWidget(Layout *parent, int row, int col, QString name)
     
    7979    std::string item;
    8080    std::ostringstream item_prop;
    81     item_prop << "item" << count;
     81    item_prop << "item" << count; 
    8282    SetAttribute(QString::fromStdString(item_prop.str()),
    8383                 listwidget->item(count)->text());
     
    9393
    9494void ListWidget::LoadEvent(QDomElement dom) {
    95   std::cout << "FlairGCS LoadEvent" << std::endl;
     95  //function not tested
     96  // std::cout << "FlairGCS LoadEvent" << std::endl;
    9697  if (listwidget->isEnabled() == true) {
    97     std::cout << "FlairGCS LoadEvent loading" << std::endl;
     98    // std::cout << "FlairGCS LoadEvent loading" << std::endl;
    9899    listwidget->clear();
    99100    QStringList items;
Note: See TracChangeset for help on using the changeset viewer.