Changeset 159 in ntrip
- Timestamp:
- Sep 9, 2006, 11:37:43 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncrinex.cpp
r158 r159 186 186 QString line = it.next(); 187 187 if (line.indexOf("PGM / RUN BY / DATE") != -1) { 188 QString hlp = QDate::currentDate().toString("dd-MMM-yyyy ");188 QString hlp = QDate::currentDate().toString("dd-MMM-yyyy").leftJustified(20, ' ', true); 189 189 _out << _pgmName.toAscii().data() << _userName.toAscii().data() 190 190 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl; … … 215 215 216 216 _out << " 2.10 OBSERVATION DATA G (GPS) RINEX VERSION / TYPE" << endl; 217 QString hlp = QDate::currentDate().toString("dd-MMM-yyyy ");217 QString hlp = QDate::currentDate().toString("dd-MMM-yyyy").leftJustified(20, ' ', true); 218 218 _out << _pgmName.toAscii().data() << _userName.toAscii().data() 219 219 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.