Commit 38ac58de authored by Jesse Mapel's avatar Jesse Mapel Committed by Jesse Mapel
Browse files

Removed tracking table warning

parent f6beda24
Loading
Loading
Loading
Loading
+13 −10
Original line number Diff line number Diff line
@@ -696,15 +696,18 @@ namespace Isis {
          }
        }

      }
      catch (IException &e) {
          // This gets called too frequently to raise a warning; so, suppress the error
          // and return invalid.
          piOrigin = -1;
      }

      if (piOrigin == -1) { // If not from an image, display N/A
        psSrcFileName = "N/A";
        psSrcSerialNum = "N/A";
      }
  }
      catch (IException &e) {
          QMessageBox::warning((QWidget *)parent(), "Warning", e.toString());
      }
  }


  /**