[Libreoffice-commits] core.git: toolkit/qa
Johnny_M
klasse at partyheld.de
Mon Sep 4 01:28:40 UTC 2017
toolkit/qa/complex/toolkit/UnitConversion.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit dfaceb70ec2f6feda6a73b8be00a7f168dfe075b
Author: Johnny_M <klasse at partyheld.de>
Date: Sat Sep 2 13:40:47 2017 +0200
Translate one German variable name
No functional change is intended.
Change-Id: I47312070bea07b0c4994da4f99aa99684cfd850e
Reviewed-on: https://gerrit.libreoffice.org/41832
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
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("");
}
More information about the Libreoffice-commits
mailing list