Changeset 10561 in ntrip for trunk/BNC/src/rinex/rnxobsfile.cpp


Ignore:
Timestamp:
Oct 8, 2024, 12:33:55 PM (2 weeks ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r10548 r10561  
    14091409    const t_rnxSat& rnxSat = epo->rnxSat[iSat];
    14101410    if (iSat > 0 && iSat % 12 == 0) {
    1411       *stream << '\n' << QString().leftJustified(32);
     1411      *stream << Qt::endl << QString().leftJustified(32);
    14121412    }
    14131413    *stream << rnxSat.prn.toString().c_str();
    14141414  }
    1415   *stream << '\n';
     1415  *stream << Qt::endl;
    14161416
    14171417  for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
     
    14201420    for (int iTypeV2 = 0; iTypeV2 < header.nTypes(sys); iTypeV2++) {
    14211421      if (iTypeV2 > 0 && iTypeV2 % 5 == 0) {
    1422         *stream << '\n';
     1422        *stream << Qt::endl;
    14231423      }
    14241424      QString typeV2 = header.obsType(sys, iTypeV2);
     
    14761476      }
    14771477    }
    1478     *stream << '\n';
     1478    *stream << Qt::endl;
    14791479  }
    14801480}
     
    15591559        }
    15601560      }
    1561       *stream << '\n';
     1561      *stream << Qt::endl;
    15621562    }
    15631563  }
Note: See TracChangeset for help on using the changeset viewer.