Translate one German variable name

No functional change is intended.

Change-Id: I47312070bea07b0c4994da4f99aa99684cfd850e
Reviewed-on: https://gerrit.libreoffice.org/41832
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
This commit is contained in:
Johnny_M
2017-09-02 13:40:47 +02:00
committed by Thorsten Behrens
parent 15790025c8
commit dfaceb70ec

View File

@ -70,14 +70,14 @@ public class UnitConversion
* only a simple test call to convertSizeToLogic(...) with different parameters
* @param _aSize
* @param _aMeasureUnit
* @param _sEinheit
* @param _sUnit
*/
private void checkSize(com.sun.star.awt.Size _aSize, short _aMeasureUnit, String _sEinheit)
private void checkSize(com.sun.star.awt.Size _aSize, short _aMeasureUnit, String _sUnit)
{
com.sun.star.awt.Size aSizeIn = m_xConversion.convertSizeToLogic(_aSize, _aMeasureUnit);
System.out.println("Window size:");
System.out.println("Width:" + aSizeIn.Width + " " + _sEinheit);
System.out.println("Height:" + aSizeIn.Height + " " + _sEinheit);
System.out.println("Width:" + aSizeIn.Width + " " + _sUnit);
System.out.println("Height:" + aSizeIn.Height + " " + _sUnit);
System.out.println("");
}