Commit 094181c1 authored by John Bonn's avatar John Bonn
Browse files

Fixed conversion of integer to QString that was using incorrect cast operator. m04651

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@7659 41f8697f-d340-4b68-9986-7bafba869bb8
parent 0868a1bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -261,7 +261,7 @@ void TranslateVoyagerLabels(Pvl &inputLabel, Cube *ocube) {
    // We'll use this later, however, we do not write it to the labels.
    // if we didn't get in here, we'll be using the original image number,
    // otherwise, we'll use this modified image number.
    imgNumber = QString((imgNum - scanNum));
    imgNumber = QString::number(imgNum - scanNum);
  }

  // This next section handles modifying the starttime slightly and requires