(#639) Use lower case for x and y

This commit is contained in:
Magne Sjaastad 2015-11-23 09:57:41 +01:00
parent 9a25a71cde
commit 11b317dd1b
2 changed files with 4 additions and 4 deletions

View File

@ -1725,8 +1725,8 @@ void RimEclipseView::axisLabels(cvf::String* xLabel, cvf::String* yLabel, cvf::S
{
CVF_ASSERT(xLabel && yLabel && zLabel);
*xLabel = "E(X)";
*yLabel = "N(Y)";
*xLabel = "E(x)";
*yLabel = "N(y)";
*zLabel = "Z";
}

View File

@ -635,8 +635,8 @@ void RimGeoMechView::axisLabels(cvf::String* xLabel, cvf::String* yLabel, cvf::S
{
CVF_ASSERT(xLabel && yLabel && zLabel);
*xLabel = "E(X,1)";
*yLabel = "N(Y,2)";
*xLabel = "E(x,1)";
*yLabel = "N(y,2)";
*zLabel = "Z(3)";
}