Commit c71fe7bd authored by Ian Humphrey's avatar Ian Humphrey
Browse files

Updated crop.cpp so that it explicitly provides all parameter values to...

Updated crop.cpp so that it explicitly provides all parameter values to ProcessMosaic::SetInputCube(). Fixes issue with uncrop tests failing within IPCE after v006 merge.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/branches/ipce@7148 41f8697f-d340-4b68-9986-7bafba869bb8
parent 7f0e9486
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -10,7 +10,8 @@ void IsisMain() {
  p.SetBandBinMatch(false);

  // Set the input cube for the process object
  Cube *icube = p.SetInputCube("FROM");
  // ihumphrey -- SetInputCube explicitly uses parameters for ProcessMosaic
  Cube *icube = p.SetInputCube("FROM", 1, 1, 1, -1, -1, -1);

  // Set up the mosaic priority
  UserInterface &ui = Application::GetUserInterface();