- Timestamp:
- Mar 28, 2007, 2:28:26 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncrinex.cpp
r421 r422 189 189 void bncRinex::readSkeleton() { 190 190 191 _headerLines.clear();192 193 191 // Read the local file 194 192 // ------------------- 195 193 QFile skl(_sklName); 196 194 if ( skl.exists() && skl.open(QIODevice::ReadOnly) ) { 195 _headerLines.clear(); 197 196 QTextStream in(&skl); 198 197 while ( !in.atEnd() ) { … … 209 208 QDate currDate = QDate::currentDate(); 210 209 if ( !_skeletonDate.isValid() || _skeletonDate != currDate ) { 210 _headerLines.clear(); 211 211 if ( downloadSkeleton() == success) { 212 212 _skeletonDate = currDate;
Note:
See TracChangeset
for help on using the changeset viewer.