Fix typos

Change-Id: I75692373028a64ba71899a4fd8c240fa4f2f1c02
Reviewed-on: https://gerrit.libreoffice.org/60172
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
This commit is contained in:
Andrea Gelmini
2018-09-07 22:57:09 +02:00
committed by Julien Nabet
parent 09978dd1fc
commit bc8131987b
3 changed files with 5 additions and 5 deletions

View File

@@ -81,7 +81,7 @@ java_util_Properties::java_util_Properties( ): java_lang_Object( nullptr, nullpt
if( !t.pEnv ) if( !t.pEnv )
return; return;
// Turn off Java-Call for the constructor // Turn off Java-Call for the constructor
// Initialize temperary Variables // Initialize temporary Variables
static const char * const cSignature = "()V"; static const char * const cSignature = "()V";
jobject tempObj; jobject tempObj;
static jmethodID mID(nullptr); static jmethodID mID(nullptr);
@@ -206,7 +206,7 @@ jobject connectivity::createByteInputStream(const css::uno::Reference< css::io::
if( !t.pEnv || !x.is() ) if( !t.pEnv || !x.is() )
return nullptr; return nullptr;
// Turn off Java-Call for the constructor // Turn off Java-Call for the constructor
// Initialize temperary variables // Initialize temporary variables
jclass clazz = java_lang_Object::findMyClass("java/io/ByteArrayInputStream"); jclass clazz = java_lang_Object::findMyClass("java/io/ByteArrayInputStream");
static jmethodID mID(nullptr); static jmethodID mID(nullptr);
if ( !mID ) if ( !mID )
@@ -233,7 +233,7 @@ jobject connectivity::createCharArrayReader(const css::uno::Reference< css::io::
if( !t.pEnv || !x.is() ) if( !t.pEnv || !x.is() )
return nullptr; return nullptr;
// Turn off Java-Call for the constructor // Turn off Java-Call for the constructor
// Initialize temperary Variables // Initialize temporary Variables
jclass clazz = java_lang_Object::findMyClass("java/io/CharArrayReader"); jclass clazz = java_lang_Object::findMyClass("java/io/CharArrayReader");
static jmethodID mID(nullptr); static jmethodID mID(nullptr);
if ( !mID ) if ( !mID )

View File

@@ -2691,7 +2691,7 @@
<xsl:with-param name="condition-pos" select="$condition-pos"/> <xsl:with-param name="condition-pos" select="$condition-pos"/>
<xsl:with-param name="isNumberTextElementOpened" select="$isNumberTextElementOpened"/> <xsl:with-param name="isNumberTextElementOpened" select="$isNumberTextElementOpened"/>
<xsl:with-param name="posed-number-format-unit" select="substring($number-format-unit,$unit-pos + 2)"/> <xsl:with-param name="posed-number-format-unit" select="substring($number-format-unit,$unit-pos + 2)"/>
<!-- place '*' temparily here, because now StarCalc doesn't support variable filling character definition --> <!-- place '*' temporarily here, because now StarCalc doesn't support variable filling character definition -->
<xsl:with-param name="numberTextValue" select="substring($posed-number-format-unit,2,1)"/> <xsl:with-param name="numberTextValue" select="substring($posed-number-format-unit,2,1)"/>
<xsl:with-param name="finished" select="$finished"/> <xsl:with-param name="finished" select="$finished"/>
</xsl:call-template> </xsl:call-template>

View File

@@ -825,7 +825,7 @@ class ControlRow(object):
self.timebox.Model.Enabled = enabled self.timebox.Model.Enabled = enabled
''' '''
Impelementation of XKeyListener. Implementation of XKeyListener.
Optionally performs the one of the following: Optionally performs the one of the following:
cursor up, or down, row up or down cursor up, or down, row up or down
''' '''