summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-19 00:34:24 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-19 09:39:47 +0200
commit46b720b1d85cce5b6b128328bfa9bbc06b3f46e8 (patch)
tree818bf461adbc7878ded586a29c4e9417e6193c50
parentb9b8ca7739828c26ec421b486a3018b8382a4caf (diff)
Fix typos
Change-Id: Ida64346bc11053bf43fd1208914407b3b2f1338e Reviewed-on: https://gerrit.libreoffice.org/77681 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--offapi/com/sun/star/form/XUpdateListener.idl2
-rw-r--r--offapi/com/sun/star/sheet/ExternalSheetCache.idl2
-rw-r--r--offapi/com/sun/star/xml/XMLExportFilter.idl2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs6
-rw-r--r--onlineupdate/source/libmar/src/mar_create.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/offapi/com/sun/star/form/XUpdateListener.idl b/offapi/com/sun/star/form/XUpdateListener.idl
index 8d8111b0a6a3..c991603e33e2 100644
--- a/offapi/com/sun/star/form/XUpdateListener.idl
+++ b/offapi/com/sun/star/form/XUpdateListener.idl
@@ -29,7 +29,7 @@
/** used to listen on objects which allow updating their data.
- <p>In addition to just get notified when an data update happened, the listener
+ <p>In addition to just get notified when a data update happened, the listener
has a chance to veto updates <em>before</em> they happen.</p>
@see XUpdateBroadcaster
diff --git a/offapi/com/sun/star/sheet/ExternalSheetCache.idl b/offapi/com/sun/star/sheet/ExternalSheetCache.idl
index 8468bd9b3d48..134b787b9d1c 100644
--- a/offapi/com/sun/star/sheet/ExternalSheetCache.idl
+++ b/offapi/com/sun/star/sheet/ExternalSheetCache.idl
@@ -27,7 +27,7 @@ module com { module sun { module star { module sheet {
/** A single sheet cache for an external document.
<p>This cached data is used for external cell and cell range references,
- as well as external range names. An com::sun::star::sheet::ExternalDocLink
+ as well as external range names. A com::sun::star::sheet::ExternalDocLink
instance contains a set of these sheet caches.</p>
@see com::sun::star::sheet::ExternalDocLink
diff --git a/offapi/com/sun/star/xml/XMLExportFilter.idl b/offapi/com/sun/star/xml/XMLExportFilter.idl
index d82454ba8c9b..1afd0112ae84 100644
--- a/offapi/com/sun/star/xml/XMLExportFilter.idl
+++ b/offapi/com/sun/star/xml/XMLExportFilter.idl
@@ -35,7 +35,7 @@ module com { module sun { module star { module xml {
XDocumentHandler will then be used to export the XML data stream. */
published service XMLExportFilter
{
- /** An com.sun.star.xml.sax.XDocumentHandler needs to be passed to
+ /** A com.sun.star.xml.sax.XDocumentHandler needs to be passed to
the com::sun::star::lang::XInitialization::initialize() call.
*/
service com::sun::star::document::ExportFilter;
diff --git a/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs b/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs
index e3e0dd499481..940bae73a5e2 100644
--- a/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs
@@ -62,7 +62,7 @@
</prop>
<prop oor:name="DockPos" oor:type="xs:string">
<info>
- <desc>Specifies the position of a docked user interface element. For top/bottom docked elements X describes a pixel position and Y the row number, left/right docked elements uses X for the column and Y for the pixel position. X and Y coordinates must be splitted by an comma.</desc>
+ <desc>Specifies the position of a docked user interface element. For top/bottom docked elements X describes a pixel position and Y the row number, left/right docked elements uses X for the column and Y for the pixel position. X and Y coordinates must be split by a comma.</desc>
</info>
</prop>
<prop oor:name="DockSize" oor:type="xs:string">
@@ -72,12 +72,12 @@
</prop>
<prop oor:name="Pos" oor:type="xs:string">
<info>
- <desc>Specifies the position of a floating user interface element in pixel. X and Y coordinates must be splitted by an comma and are relative to the document frame.</desc>
+ <desc>Specifies the position of a floating user interface element in pixel. X and Y coordinates must be split by a comma and are relative to the document frame.</desc>
</info>
</prop>
<prop oor:name="Size" oor:type="xs:string">
<info>
- <desc>Specifies the size of a floating user interface element in pixel. The real size can differ if the layout manager decides to resize it due to current circumstances. Width and height must be splitted by an comma.</desc>
+ <desc>Specifies the size of a floating user interface element in pixel. The real size can differ if the layout manager decides to resize it due to current circumstances. Width and height must be split by a comma.</desc>
</info>
</prop>
<prop oor:name="UIName" oor:type="xs:string" oor:localized="true">
diff --git a/onlineupdate/source/libmar/src/mar_create.c b/onlineupdate/source/libmar/src/mar_create.c
index 660c82511354..599e0a2a7b2a 100644
--- a/onlineupdate/source/libmar/src/mar_create.c
+++ b/onlineupdate/source/libmar/src/mar_create.c
@@ -365,7 +365,7 @@ int mar_create(const char *dest, int
if (fwrite(stack.head, stack.size_used, 1, fp) != 1)
goto failure;
- /* To protect against invalid MAR files, we assumes that the MAR file
+ /* To protect against invalid MAR files, we assume that the MAR file
size is less than or equal to MAX_SIZE_OF_MAR_FILE. */
if (ftell(fp) > MAX_SIZE_OF_MAR_FILE) {
goto failure;