summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--solenv/gbuild/platform/com_MSC_class.mk2
-rw-r--r--solenv/maven/README.md4
-rw-r--r--soltools/cpp/_include.c2
-rw-r--r--sot/source/sdstor/ucbstorage.cxx4
-rw-r--r--stoc/test/testregistry.cxx4
-rw-r--r--stoc/test/testsmgr_cpnt.cxx2
-rw-r--r--svgio/inc/svgnode.hxx2
-rw-r--r--svgio/source/svgreader/svgstyleattributes.cxx6
8 files changed, 13 insertions, 13 deletions
diff --git a/solenv/gbuild/platform/com_MSC_class.mk b/solenv/gbuild/platform/com_MSC_class.mk
index 02f7f44d5143..64615ea13282 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -513,7 +513,7 @@ endef
# ExternalProject class
-# Use the gcc wrappers for a autoconf based project
+# Use the gcc wrappers for an autoconf based project
#
# gb_ExternalProject_register_targets project state_target
define gb_ExternalProject_use_autoconf
diff --git a/solenv/maven/README.md b/solenv/maven/README.md
index 29f853fbb6e5..0b19cd2fe87a 100644
--- a/solenv/maven/README.md
+++ b/solenv/maven/README.md
@@ -263,7 +263,7 @@ can be set:
VERBOSE=1 buck build api_install
----
-Once executed, he local Maven respoitory contains the LibreOffice API
+Once executed, the local Maven repository contains the LibreOffice API
artifacts:
----
@@ -340,7 +340,7 @@ Once a repository is closed you can find the URL to it in the `Summary`
section, e.g. https://oss.sonatype.org/content/repositories/orglibreoffice-4711
Use this URL for further testing of the artifacts in this repository,
-e.g. to try building a extension against this API in this repository
+e.g. to try building an extension against this API in this repository
update the version in the `pom.xml` and configure the repository:
----
diff --git a/soltools/cpp/_include.c b/soltools/cpp/_include.c
index 57ca137cb2cd..19d14ae68f12 100644
--- a/soltools/cpp/_include.c
+++ b/soltools/cpp/_include.c
@@ -218,7 +218,7 @@ void
}
/*
- * Generate a extern C directive
+ * Generate an extern C directive
*/
void
genwrap(int end)
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx
index 591a22805946..0aa9fff0b3c9 100644
--- a/sot/source/sdstor/ucbstorage.cxx
+++ b/sot/source/sdstor/ucbstorage.cxx
@@ -896,7 +896,7 @@ sal_uInt64 UCBStorageStream_Impl::SeekPos(sal_uInt64 const nPos)
if( m_pStream->Tell() > nPos
|| m_pStream->Seek( STREAM_SEEK_TO_END ) > nPos )
{
- // no copiing is required
+ // no copying is required
aResult = m_pStream->Seek( nPos );
}
else
@@ -2311,7 +2311,7 @@ void UCBStorage::SetClassId( const ClsId& rClsId )
if ( pImp->m_aClassId == SvGlobalName() )
return;
- // in OLE storages the clipboard format an the user name will be transferred when a storage is copied because both are
+ // in OLE storages the clipboard format and the user name will be transferred when a storage is copied because both are
// stored in one the substreams
// UCB storages store the content type information as content type in the manifest file and so this information must be
// kept up to date, and also the other type information that is hold only at runtime because it can be reconstructed from
diff --git a/stoc/test/testregistry.cxx b/stoc/test/testregistry.cxx
index 6e74998c7980..d81328ac6f37 100644
--- a/stoc/test/testregistry.cxx
+++ b/stoc/test/testregistry.cxx
@@ -215,7 +215,7 @@ void test_SimpleRegistry(
xSubKey->setAsciiValue(OUString( "I'm an ascii value" ));
xSubKey = xKey->createKey(OUString( "ThirdSubKey" ));
- xSubKey->setStringValue(OUString( "I'm an Unicode value" ));
+ xSubKey->setStringValue(OUString( "I'm a Unicode value" ));
xSubKey = xKey->createKey(OUString( "FourthSubKey" ));
Sequence<sal_Int8> aSeq((sal_Int8*)"I'm a binary value", 25);
@@ -242,7 +242,7 @@ void test_SimpleRegistry(
} else
if (name == "/FirstKey/ThirdSubKey" )
{
- OSL_ENSURE( xSubKey->getStringValue() == "I'm an Unicode value",
+ OSL_ENSURE( xSubKey->getStringValue() == "I'm a Unicode value",
"test_SimpleRegistry error 12" );
} else
if (name == "/FirstKey/FourthSubKey" )
diff --git a/stoc/test/testsmgr_cpnt.cxx b/stoc/test/testsmgr_cpnt.cxx
index ddb6e4ca1b29..b09bb7ea3a45 100644
--- a/stoc/test/testsmgr_cpnt.cxx
+++ b/stoc/test/testsmgr_cpnt.cxx
@@ -205,7 +205,7 @@ extern "C" void SAL_CALL test_ServiceManager()
}
OSL_ENSURE( nLen == 8, "more than 6 factories" );
- // try to get an instance for a unknown service
+ // try to get an instance for an unknown service
OSL_VERIFY( !xSMgr->createInstance("bla.blup.Q").is() );
diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx
index c10179bf236a..86a83e6afab6 100644
--- a/svgio/inc/svgnode.hxx
+++ b/svgio/inc/svgnode.hxx
@@ -107,7 +107,7 @@ namespace svgio
Display maDisplay;
// CSS style vector chain, used in decompose phase and built up once per node.
- // It contains the StyleHierarchy for the local node. INdependent from the
+ // It contains the StyleHierarchy for the local node. Independent from the
// node hierarchy itself which also needs to be used in style entry solving
::std::vector< const SvgStyleAttributes* > maCssStyleVector;
diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx
index 9b6b81cbcdb2..b7f571478ee0 100644
--- a/svgio/source/svgreader/svgstyleattributes.cxx
+++ b/svgio/source/svgreader/svgstyleattributes.cxx
@@ -1209,7 +1209,7 @@ namespace svgio
// This is part of the SVG import of self-written SVGs from
// Draw/Impress containing multiple Slides/Pages. To be able
// to later 'break' these to multiple Pages if wanted, embed
- // each Page-Content in a identifiable Primitive Grouping
+ // each Page-Content in an identifiable Primitive Grouping
// Object.
// This is the case when the current Node is a GroupNode, has
// class="Page" set, has a parent that also is a GroupNode
@@ -2505,7 +2505,7 @@ namespace svgio
if(!maFontSizeNumber.isPositive())
return aDefaultSize;
- // #122524# Handle Unit_percent realtive to parent FontSize (see SVG1.1
+ // #122524# Handle Unit_percent relative to parent FontSize (see SVG1.1
// spec 10.10 Font selection properties \91font-size\92, lastline (click 'normative
// definition of the property')
if(Unit_percent == maFontSizeNumber.getUnit())
@@ -2969,7 +2969,7 @@ namespace svgio
SvgNumber SvgStyleAttributes::getBaselineShiftNumber() const
{
- // #122524# Handle Unit_percent realtive to parent BaselineShift
+ // #122524# Handle Unit_percent relative to parent BaselineShift
if(Unit_percent == maBaselineShiftNumber.getUnit())
{
const SvgStyleAttributes* pSvgStyleAttributes = getParentStyle();