Fix typos

Change-Id: I8ab75eb5cd54d14fda42bcdb1a251e9e2b6fefdf
Reviewed-on: https://gerrit.libreoffice.org/77612
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Andrea Gelmini
2019-08-16 21:40:46 +02:00
committed by Julien Nabet
parent 3681229b12
commit f8cb50799e
5 changed files with 8 additions and 8 deletions

View File

@@ -2375,7 +2375,7 @@ void SwXMLTableContext::MakeTable_( SwTableBox *pBox )
// All column that have absolute widths get relative widths; // All column that have absolute widths get relative widths;
// these widths relate to each over like the original absolute // these widths relate to each over like the original absolute
// widths. The smallest column gets a width that has the same // widths. The smallest column gets a width that has the same
// value as the smallest column that has an relative width // value as the smallest column that has a relative width
// already. // already.
if( 0 == nMinRelColWidth ) if( 0 == nMinRelColWidth )
nMinRelColWidth = nMinAbsColWidth; nMinRelColWidth = nMinAbsColWidth;

View File

@@ -58,7 +58,7 @@ typedef sal_uInt32 Id;
namespace writerfilter { namespace writerfilter {
/** /**
Reference to an resource that generates events and sends them to a Reference to a resource that generates events and sends them to a
handler. handler.
The reference can be resolved, i.e. the resource generates its The reference can be resolved, i.e. the resource generates its

View File

@@ -33,7 +33,7 @@ package org.openoffice.xmerge;
* utilizes to know how the &quot;Office&quot; {@code Document} tags are * utilizes to know how the &quot;Office&quot; {@code Document} tags are
* supported in the &quot;Device&quot; format.</p> * supported in the &quot;Device&quot; format.</p>
* *
* <p>The {@code DocumentMerger} object is created by a the * <p>The {@code DocumentMerger} object is created by the
* {@code DocumentMergerFactory} {@link * {@code DocumentMergerFactory} {@link
* org.openoffice.xmerge.DocumentMergerFactory#createDocumentMerger * org.openoffice.xmerge.DocumentMergerFactory#createDocumentMerger
* createDocumenMerger} method. When it is constructed, the &quot;Original * createDocumenMerger} method. When it is constructed, the &quot;Original
@@ -71,4 +71,4 @@ public interface DocumentMerger {
* @throws MergeException If any merge error occurs. * @throws MergeException If any merge error occurs.
*/ */
void merge(Document modifiedDoc) throws MergeException; void merge(Document modifiedDoc) throws MergeException;
} }

View File

@@ -25,10 +25,10 @@ import java.io.IOException;
* &quot;Office&quot; {@code Document} to a &quot;Device&quot; {@code Document} * &quot;Office&quot; {@code Document} to a &quot;Device&quot; {@code Document}
* format. * format.
* *
* <p>The {@code DocumentSerializer} object is created by a the * <p>The {@code DocumentSerializer} object is created by the
* {@code PluginFactory} {@link * {@code PluginFactory} {@link
* org.openoffice.xmerge.DocumentSerializerFactory#createDocumentSerializer * org.openoffice.xmerge.DocumentSerializerFactory#createDocumentSerializer
* createDocumentSerializer} method. When it is constructed, a * createDocumentSerializer} method. When it is constructed, an
* &quot;Office&quot; {@code Document} object is passed in to be used as input. * &quot;Office&quot; {@code Document} object is passed in to be used as input.
* </p> * </p>
* *
@@ -51,4 +51,4 @@ public interface DocumentSerializer {
* @throws IOException If any I/O error occurs. * @throws IOException If any I/O error occurs.
*/ */
ConvertData serialize() throws ConvertException, IOException; ConvertData serialize() throws ConvertException, IOException;
} }

View File

@@ -123,7 +123,7 @@ namespace xmloff
/** determine if the element imported by the object had a given attribute. /** determine if the element imported by the object had a given attribute.
<p>Please be aware of the fact that the name given must be a local name, i.e. not contain a namespace. <p>Please be aware of the fact that the name given must be a local name, i.e. not contain a namespace.
All form relevant attributes are in the same namespace, so this would be an redundant information.</p> All form relevant attributes are in the same namespace, so this would be a redundant information.</p>
*/ */
bool encounteredAttribute(const OUString& _rAttributeName) const; bool encounteredAttribute(const OUString& _rAttributeName) const;