Changeset 4477 in ntrip


Ignore:
Timestamp:
Aug 3, 2012, 4:09:35 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncgetthread.cpp

    r4476 r4477  
    718718        }
    719719        if (!allFound) {
    720           cout << "OBSTYPES: " << obs.satSys << "    ";
     720          QString msg;
     721          QTextStream str(&msg);
     722          str << obs.satSys << "    " << rnxTypes.size() << "  ";
    721723          for (int iType = 0; iType < rnxTypes.size(); iType++) {
    722             cout << rnxTypes[iType].toAscii().data() << " ";
     724            str << rnxTypes[iType] << " ";
    723725          }
    724           cout << endl;
     726          str << endl;
     727          emit(newMessage(_staID + ": Observation Types: " + msg.toAscii(), true));
    725728        }
    726729      }
Note: See TracChangeset for help on using the changeset viewer.