Kaydet (Commit) a31378fa authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Noel Grandin

Fix typos

Change-Id: Iad27d1f87568890180c142774c238a14d022946d
Reviewed-on: https://gerrit.libreoffice.org/29441Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 9b79a443
...@@ -652,7 +652,7 @@ Dim lChar As Long, sByte1 As String, sByte2 As String, sByte3 As String ...@@ -652,7 +652,7 @@ Dim lChar As Long, sByte1 As String, sByte2 As String, sByte3 As String
_PercentEncode = psChar _PercentEncode = psChar
Case Asc(&quot;-&quot;), Asc(&quot;.&quot;), Asc(&quot;_&quot;), Asc(&quot;~&quot;) Case Asc(&quot;-&quot;), Asc(&quot;.&quot;), Asc(&quot;_&quot;), Asc(&quot;~&quot;)
_PercentEncode = psChar _PercentEncode = psChar
Case Asc(&quot;!&quot;), Asc(&quot;$&quot;), Asc(&quot;&amp;&quot;), Asc(&quot;&apos;&quot;), Asc(&quot;(&quot;), Asc(&quot;)&quot;), Asc(&quot;*&quot;), Asc(&quot;+&quot;), Asc(&quot;,&quot;), Asc(&quot;;&quot;), Asc(&quot;=&quot;) &apos; Reserved characters used as delimitors in query strings Case Asc(&quot;!&quot;), Asc(&quot;$&quot;), Asc(&quot;&amp;&quot;), Asc(&quot;&apos;&quot;), Asc(&quot;(&quot;), Asc(&quot;)&quot;), Asc(&quot;*&quot;), Asc(&quot;+&quot;), Asc(&quot;,&quot;), Asc(&quot;;&quot;), Asc(&quot;=&quot;) &apos; Reserved characters used as delimiter in query strings
_PercentEncode = psChar _PercentEncode = psChar
Case Asc(&quot; &quot;), Asc(&quot;%&quot;) Case Asc(&quot; &quot;), Asc(&quot;%&quot;)
_PercentEncode = &quot;%&quot; &amp; Right(&quot;00&quot; &amp; Hex(lChar), 2) _PercentEncode = &quot;%&quot; &amp; Right(&quot;00&quot; &amp; Hex(lChar), 2)
...@@ -897,4 +897,4 @@ Private Function _UTF8Encode(ByVal psChar As String) As String ...@@ -897,4 +897,4 @@ Private Function _UTF8Encode(ByVal psChar As String) As String
End Function &apos; _UTF8Encode V1.4.0 End Function &apos; _UTF8Encode V1.4.0
</script:module> </script:module>
\ No newline at end of file
...@@ -694,7 +694,7 @@ void SdXMLNumberFormatImportContext::EndElement() ...@@ -694,7 +694,7 @@ void SdXMLNumberFormatImportContext::EndElement()
} }
} }
// no date style found? maybe its an extended time style // no date style found? maybe it's an extended time style
if( mnKey == -1 ) if( mnKey == -1 )
{ {
// compare import with all time styles // compare import with all time styles
......
...@@ -1251,7 +1251,7 @@ void XMLShapeExportPropertyMapper::ContextFilter( ...@@ -1251,7 +1251,7 @@ void XMLShapeExportPropertyMapper::ContextFilter(
case CTF_SD_NUMBERINGRULES_NAME: case CTF_SD_NUMBERINGRULES_NAME:
{ {
// this property is not exported in the style:properties element // this property is not exported in the style:properties element
// because its an XIndexAccess and not a string. // because it's an XIndexAccess and not a string.
// This will be handled in SvXMLAutoStylePoolP::exportStyleAttributes // This will be handled in SvXMLAutoStylePoolP::exportStyleAttributes
// This is suboptimal // This is suboptimal
if( !mbIsInAutoStyles ) if( !mbIsInAutoStyles )
......
...@@ -250,7 +250,7 @@ SvXMLImportContext *SdXMLShapeContext::CreateChildContext( sal_uInt16 p_nPrefix, ...@@ -250,7 +250,7 @@ SvXMLImportContext *SdXMLShapeContext::CreateChildContext( sal_uInt16 p_nPrefix,
void SdXMLShapeContext::addGluePoint( const uno::Reference< xml::sax::XAttributeList>& xAttrList ) void SdXMLShapeContext::addGluePoint( const uno::Reference< xml::sax::XAttributeList>& xAttrList )
{ {
// get the glue points container for this shape if its not already there // get the glue points container for this shape if it's not already there
if( !mxGluePoints.is() ) if( !mxGluePoints.is() )
{ {
uno::Reference< drawing::XGluePointsSupplier > xSupplier( mxShape, uno::UNO_QUERY ); uno::Reference< drawing::XGluePointsSupplier > xSupplier( mxShape, uno::UNO_QUERY );
......
...@@ -408,7 +408,7 @@ void SvxXMLNumRuleExport::exportLevelStyle( sal_Int32 nLevel, ...@@ -408,7 +408,7 @@ void SvxXMLNumRuleExport::exportLevelStyle( sal_Int32 nLevel,
enum XMLTokenEnum eValue = XML_TOKEN_INVALID; enum XMLTokenEnum eValue = XML_TOKEN_INVALID;
switch( eImageVertOrient ) switch( eImageVertOrient )
{ {
case VertOrientation::BOTTOM: // yes, its OK: BOTTOM means that the baseline case VertOrientation::BOTTOM: // yes, it's OK: BOTTOM means that the baseline
// hits the frame at its topmost position // hits the frame at its topmost position
case VertOrientation::LINE_TOP: case VertOrientation::LINE_TOP:
case VertOrientation::CHAR_TOP: case VertOrientation::CHAR_TOP:
...@@ -419,7 +419,7 @@ void SvxXMLNumRuleExport::exportLevelStyle( sal_Int32 nLevel, ...@@ -419,7 +419,7 @@ void SvxXMLNumRuleExport::exportLevelStyle( sal_Int32 nLevel,
case VertOrientation::CHAR_CENTER: case VertOrientation::CHAR_CENTER:
eValue = XML_MIDDLE; eValue = XML_MIDDLE;
break; break;
case VertOrientation::TOP: // yes, its OK: TOP means that the baseline case VertOrientation::TOP: // yes, it's OK: TOP means that the baseline
// hits the frame at its bottommost position // hits the frame at its bottommost position
case VertOrientation::LINE_BOTTOM: case VertOrientation::LINE_BOTTOM:
case VertOrientation::CHAR_BOTTOM: case VertOrientation::CHAR_BOTTOM:
......
...@@ -208,7 +208,7 @@ XMLTableImport::XMLTableImport( SvXMLImport& rImport, const rtl::Reference< XMLP ...@@ -208,7 +208,7 @@ XMLTableImport::XMLTableImport( SvXMLImport& rImport, const rtl::Reference< XMLP
} }
catch(const Exception&) catch(const Exception&)
{ {
SAL_WARN("xmloff.table", "Error while checking avaiable service names"); SAL_WARN("xmloff.table", "Error while checking available service names");
} }
if (bWriter) if (bWriter)
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
-pre-compile-test: called before javac compilation of JUnit tests -pre-compile-test: called before javac compilation of JUnit tests
-post-compile-test: called after javac compilation of JUnit tests -post-compile-test: called after javac compilation of JUnit tests
-pre-compile-test-single: called before javac compilation of single JUnit test -pre-compile-test-single: called before javac compilation of single JUnit test
-post-compile-test-single: called after javac compilation of single JUunit test -post-compile-test-single: called after javac compilation of single JUnit test
-pre-jar: called before JAR building -pre-jar: called before JAR building
-post-jar: called after JAR building -post-jar: called after JAR building
-post-clean: called after cleaning build products -post-clean: called after cleaning build products
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment