diff options
author | Johnny_M <klasse@partyheld.de> | 2017-09-02 13:40:47 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2017-09-04 03:28:17 +0200 |
commit | dfaceb70ec2f6feda6a73b8be00a7f168dfe075b (patch) | |
tree | c842019ede4696bce29ff5bfc2f709db83883746 /toolkit | |
parent | 15790025c8ac2fe659f458cffc0d72a79089074e (diff) |
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>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/qa/complex/toolkit/UnitConversion.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/qa/complex/toolkit/UnitConversion.java b/toolkit/qa/complex/toolkit/UnitConversion.java index 15b67fc61b21..72fcef7cba29 100644 --- a/toolkit/qa/complex/toolkit/UnitConversion.java +++ b/toolkit/qa/complex/toolkit/UnitConversion.java @@ -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(""); } |