Changeset 805 in ntrip


Ignore:
Timestamp:
Apr 9, 2008, 12:52:44 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.pro

    r804 r805  
    66
    77RESOURCES += bns.qrc
    8 
    9 unix:QMAKE_CFLAGS_RELEASE   -= -O2
    10 unix:QMAKE_CXXFLAGS_RELEASE -= -O2
    118
    129# Location of the NewMat Library
  • trunk/BNS/bnseph.cpp

    r800 r805  
    110110      if (year < 100) year += 2000;
    111111     
    112       QDateTime dateTime(QDate(year,month,day), QTime(hour, minute, second),
    113                          Qt::UTC);
     112      QDateTime dateTime(QDate(int(year), int(month), int(day)),
     113                         QTime(int(hour), int(minute), int(second)), Qt::UTC);
    114114      int week;
    115115      GPSweekFromDateAndTime(dateTime, week, ep->TOC);
Note: See TracChangeset for help on using the changeset viewer.