Changeset 5879 in ntrip for trunk/BNC/src/bncfigureppp.cpp


Ignore:
Timestamp:
Aug 8, 2014, 12:58:03 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4980 r5879  
    107107//
    108108////////////////////////////////////////////////////////////////////////////
    109 void bncFigurePPP::slotNewPosition(bncTime time, double x, double y, double z){
     109void bncFigurePPP::slotNewPosition(bncTime time, QVector<double> xx){
    110110
    111111  QMutexLocker locker(&_mutex);
     
    114114
    115115  newPos->time   = time;
    116   newPos->xyz[0] = x;
    117   newPos->xyz[1] = y;
    118   newPos->xyz[2] = z;
     116  newPos->xyz[0] = xx.data()[0];
     117  newPos->xyz[1] = xx.data()[1];
     118  newPos->xyz[2] = xx.data()[2];
    119119
    120120  _pos.push_back(newPos);
Note: See TracChangeset for help on using the changeset viewer.