Skip to content

Commit

Permalink
Update error message to clearly explain the error condition.
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <mike.jackson@bluequartz.net>
  • Loading branch information
imikejackson committed Jun 23, 2023
1 parent d218aa8 commit 08a7c45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ void InterpolatePointCloudToRegularGrid::execute()
index = m_VoxelIndices[i];
if(index > maxImageIndex)
{
QString ss = QObject::tr("Index present in the selected Voxel Indices array that falls outside the selected Image Geometry for interpolation.\n Index = %1\n Max Image Index = %2\n")
QString ss = QObject::tr("Index present in the selected Voxel Indices array falls outside the selected Image Geometry for interpolation.\n Index = %1\n Max Image Index = %2\n")
.arg(index)
.arg(maxImageIndex);
setErrorCondition(-1, ss);
Expand Down

0 comments on commit 08a7c45

Please sign in to comment.