Changeset 2937 in ntrip


Ignore:
Timestamp:
Jan 30, 2011, 10:56:56 AM (13 years ago)
Author:
weber
Message:

Log message "Cannot find IGS ANTEX file" added if file does not exist

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r2909 r2937  
    13311331    QFile advisefile(settings.value("adviseScript").toString());
    13321332    if (!advisefile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find Outages script", true);
     1333  }
     1334
     1335  QString ant_file = settings.value("pppAntex").toString();
     1336  if ( !ant_file.isEmpty() ) {
     1337    QFile anxfile(settings.value("pppAntex").toString());
     1338    if (!anxfile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find IGS ANTEX file", true);
    13331339  }
    13341340
Note: See TracChangeset for help on using the changeset viewer.