summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-10-01 15:46:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-03 11:27:00 +0000
commita31378fa043c72770aa7457c4e03194de8b3bab5 (patch)
treea83ff2cfbbd09f7269efa9169c62bbbdaf5a363d
parent9b79a4437d41a25ab61d5ab57ec3cb076af80816 (diff)
Fix typos
Change-Id: Iad27d1f87568890180c142774c238a14d022946d Reviewed-on: https://gerrit.libreoffice.org/29441 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--wizards/source/access2base/Utils.xba4
-rw-r--r--xmloff/source/draw/XMLNumberStyles.cxx2
-rw-r--r--xmloff/source/draw/sdpropls.cxx2
-rw-r--r--xmloff/source/draw/ximpshap.cxx2
-rw-r--r--xmloff/source/style/xmlnume.cxx4
-rw-r--r--xmloff/source/table/XMLTableImport.cxx2
-rw-r--r--xmlsecurity/test_docs/tools/httpserv/build.xml2
7 files changed, 9 insertions, 9 deletions
diff --git a/wizards/source/access2base/Utils.xba b/wizards/source/access2base/Utils.xba
index 8390deea6045..ecae60efe23e 100644
--- a/wizards/source/access2base/Utils.xba
+++ b/wizards/source/access2base/Utils.xba
@@ -652,7 +652,7 @@ Dim lChar As Long, sByte1 As String, sByte2 As String, sByte3 As String
_PercentEncode = psChar
Case Asc(&quot;-&quot;), Asc(&quot;.&quot;), Asc(&quot;_&quot;), Asc(&quot;~&quot;)
_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
Case Asc(&quot; &quot;), Asc(&quot;%&quot;)
_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
End Function &apos; _UTF8Encode V1.4.0
-</script:module> \ No newline at end of file
+</script:module>
diff --git a/xmloff/source/draw/XMLNumberStyles.cxx b/xmloff/source/draw/XMLNumberStyles.cxx
index 82802c78ad26..cd8f8fae9709 100644
--- a/xmloff/source/draw/XMLNumberStyles.cxx
+++ b/xmloff/source/draw/XMLNumberStyles.cxx
@@ -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 )
{
// compare import with all time styles
diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx
index d950505895d3..72d6315fa088 100644
--- a/xmloff/source/draw/sdpropls.cxx
+++ b/xmloff/source/draw/sdpropls.cxx
@@ -1251,7 +1251,7 @@ void XMLShapeExportPropertyMapper::ContextFilter(
case CTF_SD_NUMBERINGRULES_NAME:
{
// 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 is suboptimal
if( !mbIsInAutoStyles )
diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx
index 15facfc6a183..d8b69cd517ae 100644
--- a/xmloff/source/draw/ximpshap.cxx
+++ b/xmloff/source/draw/ximpshap.cxx
@@ -250,7 +250,7 @@ SvXMLImportContext *SdXMLShapeContext::CreateChildContext( sal_uInt16 p_nPrefix,
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() )
{
uno::Reference< drawing::XGluePointsSupplier > xSupplier( mxShape, uno::UNO_QUERY );
diff --git a/xmloff/source/style/xmlnume.cxx b/xmloff/source/style/xmlnume.cxx
index a52c40316f49..073c2e72a383 100644
--- a/xmloff/source/style/xmlnume.cxx
+++ b/xmloff/source/style/xmlnume.cxx
@@ -408,7 +408,7 @@ void SvxXMLNumRuleExport::exportLevelStyle( sal_Int32 nLevel,
enum XMLTokenEnum eValue = XML_TOKEN_INVALID;
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
case VertOrientation::LINE_TOP:
case VertOrientation::CHAR_TOP:
@@ -419,7 +419,7 @@ void SvxXMLNumRuleExport::exportLevelStyle( sal_Int32 nLevel,
case VertOrientation::CHAR_CENTER:
eValue = XML_MIDDLE;
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
case VertOrientation::LINE_BOTTOM:
case VertOrientation::CHAR_BOTTOM:
diff --git a/xmloff/source/table/XMLTableImport.cxx b/xmloff/source/table/XMLTableImport.cxx
index e32710a6dd2a..d844d2fcdb10 100644
--- a/xmloff/source/table/XMLTableImport.cxx
+++ b/xmloff/source/table/XMLTableImport.cxx
@@ -208,7 +208,7 @@ XMLTableImport::XMLTableImport( SvXMLImport& rImport, const rtl::Reference< XMLP
}
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)
diff --git a/xmlsecurity/test_docs/tools/httpserv/build.xml b/xmlsecurity/test_docs/tools/httpserv/build.xml
index aacabc802851..3492d3aa61aa 100644
--- a/xmlsecurity/test_docs/tools/httpserv/build.xml
+++ b/xmlsecurity/test_docs/tools/httpserv/build.xml
@@ -25,7 +25,7 @@
-pre-compile-test: called before 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
- -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
-post-jar: called after JAR building
-post-clean: called after cleaning build products