Changeset 9592 in ntrip


Ignore:
Timestamp:
Jan 7, 2022, 9:43:06 PM (2 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/orbComp/sp3Comp.cpp

    r9587 r9592  
    8484  }
    8585  if (!_log) {
    86     *_log  << "ERROR: SP3Comp requires logfile specification" << Qt::endl;
     86    *_log  << "ERROR: SP3Comp requires logfile specification" << endl;
    8787    goto exit;
    8888  }
    8989
    9090  for (int ii = 0; ii < _sp3FileNames.size(); ii++) {
    91     *_log << "! SP3 File " << ii+1 << ": " << _sp3FileNames[ii] << Qt::endl;
     91    *_log << "! SP3 File " << ii+1 << ": " << _sp3FileNames[ii] << endl;
    9292  }
    9393  if (_sp3FileNames.size() != 2) {
    94     *_log << "ERROR: sp3Comp requires two input SP3 files" << Qt::endl;
     94    *_log << "ERROR: sp3Comp requires two input SP3 files" << endl;
    9595    goto end;
    9696  }
     
    102102  }
    103103  catch (const string& error) {
    104     *_log << "ERROR: " << error.c_str() << Qt::endl;
     104    *_log << "ERROR: " << error.c_str() << endl;
    105105  }
    106106  catch (const char* error) {
    107     *_log << "ERROR: " << error << Qt::endl;
     107    *_log << "ERROR: " << error << endl;
    108108  }
    109109  catch (Exception& exc) {
    110     *_log << "ERROR: " << exc.what() << Qt::endl;
     110    *_log << "ERROR: " << exc.what() << endl;
    111111  }
    112112  catch (std::exception& exc) {
    113     *_log << "ERROR: " << exc.what() << Qt::endl;
     113    *_log << "ERROR: " << exc.what() << endl;
    114114  }
    115115  catch (QString error) {
    116     *_log << "ERROR: " << error << Qt::endl;
     116    *_log << "ERROR: " << error << endl;
    117117  }
    118118  catch (...) {
    119     *_log << "ERROR: " << "unknown exception" << Qt::endl;
     119    *_log << "ERROR: " << "unknown exception" << endl;
    120120  }
    121121
Note: See TracChangeset for help on using the changeset viewer.