summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-09 15:18:59 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-09 16:13:50 +0200
commit956c632e34d47099a2a0d6b084a4e30d26eaa0c0 (patch)
tree445d23ba68da51152c06806323a98379d3180fbb /offapi
parent24f609b51243b052f38930fbc902c4a95f0e94a0 (diff)
Fix typos
Change-Id: I76fe3da0ab62afa1cc07dafcd97c3cd06a7a23a1 Reviewed-on: https://gerrit.libreoffice.org/77205 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/sdb/XSingleSelectQueryAnalyzer.idl2
-rw-r--r--offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl2
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableWizard.idl4
-rw-r--r--offapi/com/sun/star/sdbc/ChangeAction.idl6
-rw-r--r--offapi/com/sun/star/sdbcx/XRename.idl2
-rw-r--r--offapi/com/sun/star/sdbcx/XRowLocate.idl2
-rw-r--r--offapi/com/sun/star/sheet/AccessibleSpreadsheetDocumentView.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaMapGroup.idl2
-rw-r--r--offapi/com/sun/star/task/XPasswordContainer.idl4
-rw-r--r--offapi/com/sun/star/text/BaseFrameProperties.idl2
-rw-r--r--offapi/com/sun/star/text/DocumentSettings.idl2
-rw-r--r--offapi/com/sun/star/text/RedlinePortion.idl2
-rw-r--r--offapi/com/sun/star/text/XRedline.idl2
-rw-r--r--offapi/com/sun/star/ucb/FTPContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/UnsupportedCommandException.idl2
15 files changed, 19 insertions, 19 deletions
diff --git a/offapi/com/sun/star/sdb/XSingleSelectQueryAnalyzer.idl b/offapi/com/sun/star/sdb/XSingleSelectQueryAnalyzer.idl
index e566f3306b7b..df6e33d736d4 100644
--- a/offapi/com/sun/star/sdb/XSingleSelectQueryAnalyzer.idl
+++ b/offapi/com/sun/star/sdb/XSingleSelectQueryAnalyzer.idl
@@ -97,7 +97,7 @@ interface XSingleSelectQueryAnalyzer : com::sun::star::uno::XInterface
/** returns the currently used group.
<p>
- The columns returned form the GROUP BY clause.
+ The columns returned from the GROUP BY clause.
</p>
@returns
a collection of com::sun::star::sdb::GroupColumn which form the GROUP BY.
diff --git a/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl b/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
index 5af91b6b5097..2a53696028d4 100644
--- a/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
+++ b/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
@@ -170,7 +170,7 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
/** appends an additional part to the sort order criteria of the select
statement. The column must be a com::sun::star::sdbcx::Column.
@param column
- the column which is used to create a order part
+ the column which is used to create an order part
@param ascending
`TRUE` when the order should be ascending, otherwise if `FALSE` descending.
@throws com::sun::star::sdbc::SQLException
diff --git a/offapi/com/sun/star/sdb/application/CopyTableWizard.idl b/offapi/com/sun/star/sdb/application/CopyTableWizard.idl
index 3ba2e708959f..9999428b85e5 100644
--- a/offapi/com/sun/star/sdb/application/CopyTableWizard.idl
+++ b/offapi/com/sun/star/sdb/application/CopyTableWizard.idl
@@ -118,7 +118,7 @@ service CopyTableWizard : XCopyTableWizard
com::sun::star::sdb::CommandType::QUERY are supported.</li>
<li>If you specify a <code>ConnectionResource</code>, or an
- <code>ActiveConnection</code> which implements an com::sun::star::sdbc::Connection only
+ <code>ActiveConnection</code> which implements a com::sun::star::sdbc::Connection only
(as opposed to a com::sun::star::sdb::Connection), then the resulting connection is
not able to provide queries, thus a command type <code>QUERY</code> will be rejected.</li>
@@ -158,7 +158,7 @@ service CopyTableWizard : XCopyTableWizard
@throws ::com::sun::star::lang::WrappedTargetException
if an error other than the ones mentioned above occurs while extracting the necessary
information from any of the data access descriptors. For instance, this might
- be an com::sun::star::sdbc::SQLException thrown upon connecting
+ be a com::sun::star::sdbc::SQLException thrown upon connecting
to a data source described by the descriptor's <code>DataSourceName</code> member.
@see ::com::sun::star::sdb::DataAccessDescriptor
diff --git a/offapi/com/sun/star/sdbc/ChangeAction.idl b/offapi/com/sun/star/sdbc/ChangeAction.idl
index 20cb05b1cb2b..097f608f5349 100644
--- a/offapi/com/sun/star/sdbc/ChangeAction.idl
+++ b/offapi/com/sun/star/sdbc/ChangeAction.idl
@@ -26,11 +26,11 @@ module com { module sun { module star { module sdbc {
published constants ChangeAction
{
/**
- indicates that a insert will be performed.
+ indicates that an insert will be performed.
*/
const long INSERT = 1;
/**
- indicates that a update will be performed.
+ indicates that an update will be performed.
*/
const long UPDATE = 2;
/**
@@ -38,7 +38,7 @@ published constants ChangeAction
*/
const long DELETE = 3;
/**
- indicates that a undo will be performed.
+ indicates that an undo will be performed.
*/
const long UNDO = 4;
};
diff --git a/offapi/com/sun/star/sdbcx/XRename.idl b/offapi/com/sun/star/sdbcx/XRename.idl
index db7eadf5bd25..542cc34e5bb3 100644
--- a/offapi/com/sun/star/sdbcx/XRename.idl
+++ b/offapi/com/sun/star/sdbcx/XRename.idl
@@ -36,7 +36,7 @@
published interface XRename: com::sun::star::uno::XInterface
{
- /** is intended to alter the name of a object.
+ /** is intended to alter the name of an object.
@param newName
the new name
@throws com::sun::star::sdbc::SQLException
diff --git a/offapi/com/sun/star/sdbcx/XRowLocate.idl b/offapi/com/sun/star/sdbcx/XRowLocate.idl
index 2fc16bc7bf24..d03480221fb9 100644
--- a/offapi/com/sun/star/sdbcx/XRowLocate.idl
+++ b/offapi/com/sun/star/sdbcx/XRowLocate.idl
@@ -47,7 +47,7 @@ published interface XRowLocate: com::sun::star::uno::XInterface
*/
any getBookmark() raises (com::sun::star::sdbc::SQLException);
- /** moves the cursor to the row identified by an valid bookmark.
+ /** moves the cursor to the row identified by a valid bookmark.
<p>
If the bookmark could not be located, a result set will be positioned
diff --git a/offapi/com/sun/star/sheet/AccessibleSpreadsheetDocumentView.idl b/offapi/com/sun/star/sheet/AccessibleSpreadsheetDocumentView.idl
index e25e15381ff6..6a594e4edf9a 100644
--- a/offapi/com/sun/star/sheet/AccessibleSpreadsheetDocumentView.idl
+++ b/offapi/com/sun/star/sheet/AccessibleSpreadsheetDocumentView.idl
@@ -74,7 +74,7 @@ service AccessibleSpreadsheetDocumentView
</ul>
<p>The following rules apply to the children order. General it
represents the paint order. The object in the background came
- first and than all over lying objects. The last painted object
+ first and then all over lying objects. The last painted object
is also the last child.</p>
<ul>
<li>Graphics, embedded objects and shapes appear
diff --git a/offapi/com/sun/star/sheet/FormulaMapGroup.idl b/offapi/com/sun/star/sheet/FormulaMapGroup.idl
index e089bfa59571..fc55c7afd436 100644
--- a/offapi/com/sun/star/sheet/FormulaMapGroup.idl
+++ b/offapi/com/sun/star/sheet/FormulaMapGroup.idl
@@ -25,7 +25,7 @@ module com { module sun { module star { module sheet {
/** Constants of bit masks used with
- XFormurmulaOpCodeMapper::getAvailableMappings() to
+ XFormulaOpCodeMapper::getAvailableMappings() to
specify for which group of symbols the mappings are to be obtained.
If no bit is set, a sequence of special mappings is returned in the
diff --git a/offapi/com/sun/star/task/XPasswordContainer.idl b/offapi/com/sun/star/task/XPasswordContainer.idl
index 93e2d3705d57..a105deabd83c 100644
--- a/offapi/com/sun/star/task/XPasswordContainer.idl
+++ b/offapi/com/sun/star/task/XPasswordContainer.idl
@@ -31,7 +31,7 @@ module com { module sun { module star { module task {
*/
published interface XPasswordContainer : com::sun::star::uno::XInterface
{
- /** Save passwords in to the container.
+ /** Save passwords into the container.
@param Url URL-pattern, that will be used later to retrieve
passwords.
@@ -46,7 +46,7 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
*/
void add( [in] string Url, [in] string UserName, [in] sequence<string> Passwords, [in] XInteractionHandler Handler );
- /** Save passwords in to the container, and store them in the file.
+ /** Save passwords into the container, and store them in the file.
@param Url URL-pattern, that will be used later to retrieve
passwords.
diff --git a/offapi/com/sun/star/text/BaseFrameProperties.idl b/offapi/com/sun/star/text/BaseFrameProperties.idl
index dbaa8702a983..4f62845fe6ba 100644
--- a/offapi/com/sun/star/text/BaseFrameProperties.idl
+++ b/offapi/com/sun/star/text/BaseFrameProperties.idl
@@ -300,7 +300,7 @@ published service BaseFrameProperties
/** contains description for the object
- <p>The long description text can be entered to describe a object in
+ <p>The long description text can be entered to describe an object in
more detail to users with screen reader software. The description is
visible as an alternative tag for accessibility tools.</p>
diff --git a/offapi/com/sun/star/text/DocumentSettings.idl b/offapi/com/sun/star/text/DocumentSettings.idl
index a1a741a8b4e0..00e82c4d8759 100644
--- a/offapi/com/sun/star/text/DocumentSettings.idl
+++ b/offapi/com/sun/star/text/DocumentSettings.idl
@@ -103,7 +103,7 @@ published service DocumentSettings
If `TRUE`, the formatting till OpenOffice.org 1.1 is
applied. This means, that a proportional line spacing is applied
above and below a text line and that the maximum of the line spacing
- value between two paragraph is added respectively reckoned up with the
+ value between two paragraphs is added respectively reckoned up with the
paragraph spacing (adding or reckoning up is controlled by document
option AddParaTableSpacing).
If `FALSE` (default for documents since OpenOffice.org 2.0),
diff --git a/offapi/com/sun/star/text/RedlinePortion.idl b/offapi/com/sun/star/text/RedlinePortion.idl
index 422caa016fbc..34da4c99dd91 100644
--- a/offapi/com/sun/star/text/RedlinePortion.idl
+++ b/offapi/com/sun/star/text/RedlinePortion.idl
@@ -43,7 +43,7 @@ published service RedlinePortion
<p> Valid type names are:</p>
<UL>
<LI><P>Insert - marks an insertion</P>
- <LI><P>Delete - marks an deletion</P>
+ <LI><P>Delete - marks a deletion</P>
<LI><P>Format - marks an attribute change</P>
<LI><P>TextTable - marks a text table</P>
<LI><P>Style - marks an applied style</P>
diff --git a/offapi/com/sun/star/text/XRedline.idl b/offapi/com/sun/star/text/XRedline.idl
index b56122895b8a..9b259e8b9e58 100644
--- a/offapi/com/sun/star/text/XRedline.idl
+++ b/offapi/com/sun/star/text/XRedline.idl
@@ -36,7 +36,7 @@ published interface XRedline
<p> Valid type names are:</p>
<UL>
<LI><P>Insert - marks an insertion</P>
- <LI><P>Delete - marks an deletion</P>
+ <LI><P>Delete - marks a deletion</P>
<LI><P>Format - marks an attribute change</P>
<LI><P>TextTable - marks a text table</P>
<LI><P>Style - marks an applied style</P>
diff --git a/offapi/com/sun/star/ucb/FTPContent.idl b/offapi/com/sun/star/ucb/FTPContent.idl
index 87f38b609993..80bb55794bf2 100644
--- a/offapi/com/sun/star/ucb/FTPContent.idl
+++ b/offapi/com/sun/star/ucb/FTPContent.idl
@@ -80,7 +80,7 @@ published service FTPContent
Let the new object ( not the parent! ) execute the command "insert".
This will create the corresponding physical file or directory.
For files, you need to supply the implementation of
- an com::sun::star::io::XInputStream with the
+ a com::sun::star::io::XInputStream with the
command's parameters, that provides access to the stream data.
</li>
</ol>
diff --git a/offapi/com/sun/star/ucb/UnsupportedCommandException.idl b/offapi/com/sun/star/ucb/UnsupportedCommandException.idl
index 0c7e59750bf0..4706c19c2a56 100644
--- a/offapi/com/sun/star/ucb/UnsupportedCommandException.idl
+++ b/offapi/com/sun/star/ucb/UnsupportedCommandException.idl
@@ -25,7 +25,7 @@
module com { module sun { module star { module ucb {
-/** is thrown to indicate that the a command is not known by the
+/** is thrown to indicate that a command is not known by the
implementation of an interface.
@version 1.0