Changeset 5110 in ntrip for trunk/GnssCenter/inpedit


Ignore:
Timestamp:
Apr 12, 2013, 5:24:37 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/inpedit/keyword.cpp

    r5109 r5110  
    199199  else if (widgetType == "uniline") {
    200200    t_uniLine* uniLine = static_cast<t_uniLine*>(_widget);
     201    for (int iRow = 0; iRow < uniLine->rowCount(); iRow++) {
     202      QString rowStr;
     203      for (int iCol = 0; iCol < uniLine->columnCount()-2; iCol++) {
     204        QTableWidgetItem* item = uniLine->item(iRow, iCol);
     205        if (item) {
     206          rowStr += item->text() + ' ';
     207        }
     208      }
     209      values << rowStr;
     210    }
    201211  }
    202212
Note: See TracChangeset for help on using the changeset viewer.