Loading isis/src/control/apps/jigsaw/jigsaw.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -109,7 +109,7 @@ void IsisMain() { if (ui.GetBoolean("UPDATE") ) { if ( !bundleAdjustment->isConverged() ) { gp += PvlKeyword("Status","Bundle did not converge, camera pointing NOT updated"); QString msg = "Bundle did not converge within MAXITS [" + ui.GetString("MAXITS") + "] iterations [" + cnetFile + "]"; QString msg = "Bundle did not converge within MAXITS [" + toString(ui.GetInteger("MAXITS")) + "] iterations [" + cnetFile + "]"; throw IException(IException::Unknown, msg, _FILEINFO_); } else { Loading Loading
isis/src/control/apps/jigsaw/jigsaw.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -109,7 +109,7 @@ void IsisMain() { if (ui.GetBoolean("UPDATE") ) { if ( !bundleAdjustment->isConverged() ) { gp += PvlKeyword("Status","Bundle did not converge, camera pointing NOT updated"); QString msg = "Bundle did not converge within MAXITS [" + ui.GetString("MAXITS") + "] iterations [" + cnetFile + "]"; QString msg = "Bundle did not converge within MAXITS [" + toString(ui.GetInteger("MAXITS")) + "] iterations [" + cnetFile + "]"; throw IException(IException::Unknown, msg, _FILEINFO_); } else { Loading