Skip to content

Commit

Permalink
Fixed compiler warning. Re #6609.
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Mar 19, 2013
1 parent 14c136e commit b13daa1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void Viewport::setProjection(const Mantid::Kernel::V3D& minBounds, const Mantid:
double tmp = maxBounds.norm();
if (tmp > radius) radius = tmp;

setProjection( minBounds.X(), maxBounds.X(), minBounds.Y(), maxBounds.Y(), -radius, radius );
setProjection( minBounds.X(), maxBounds.X(), minBounds.Y(), maxBounds.Y(), -radius, radius, type );
}

/**
Expand Down

0 comments on commit b13daa1

Please sign in to comment.