summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-29 00:22:14 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-07-29 10:09:50 +0200
commit9e857693e0cb05448be681ea27d7500c25b34786 (patch)
treec28f5fef5d14a271a0ceb23fd8b78891f5fd3c85
parent4a9ac82cab9d77e593f9ea4a070eadb50a2bba0a (diff)
Fix typos
Change-Id: Ic2fb0772648b3f93c2fdfa4d2f663b6ede2ead51 Reviewed-on: https://gerrit.libreoffice.org/76507 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/vcl/scheduler.hxx2
-rw-r--r--include/vcl/sysdata.hxx4
-rw-r--r--l10ntools/inc/xmlparse.hxx6
-rw-r--r--lotuswordpro/inc/xfilter/ixfattrlist.hxx2
-rw-r--r--offapi/com/sun/star/drawing/XCustomShapeHandle.idl2
-rw-r--r--offapi/com/sun/star/embed/EmbeddedObjectDescriptor.idl2
-rw-r--r--offapi/com/sun/star/report/XFormattedField.idl2
-rw-r--r--offapi/com/sun/star/report/XReportControlFormat.idl2
-rw-r--r--offapi/com/sun/star/report/XSection.idl4
-rw-r--r--offapi/com/sun/star/resource/XStringResourcePersistence.idl2
-rw-r--r--offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl2
-rw-r--r--offapi/com/sun/star/sdb/ColumnDescriptorControlModel.idl2
-rw-r--r--offapi/com/sun/star/sdb/DatabaseInteractionHandler.idl2
-rw-r--r--offapi/com/sun/star/sdb/OfficeDatabaseDocument.idl4
-rw-r--r--offapi/com/sun/star/sdb/RelationDesign.idl2
15 files changed, 20 insertions, 20 deletions
diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx
index 96979cf5d3c5..9318b2109641 100644
--- a/include/vcl/scheduler.hxx
+++ b/include/vcl/scheduler.hxx
@@ -45,7 +45,7 @@ public:
static void ImplDeInitScheduler();
- /// Process one pending Timer with highhest priority
+ /// Process one pending Timer with highest priority
static void CallbackTaskScheduling();
/// Process one pending task ahead of time with highest priority.
static bool ProcessTaskScheduling();
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx
index 4b7b562da519..28f991db4878 100644
--- a/include/vcl/sysdata.hxx
+++ b/include/vcl/sysdata.hxx
@@ -56,7 +56,7 @@ struct SystemEnvData
HWND hWnd; // the window hwnd
#elif defined( MACOSX )
NSView* mpNSView; // the cocoa (NSView *) implementing this object
- bool mbOpenGL; // use a OpenGL providing NSView
+ bool mbOpenGL; // use an OpenGL providing NSView
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
@@ -170,7 +170,7 @@ struct SystemWindowData
{
#if defined(_WIN32) // meaningless on Windows
#elif defined( MACOSX )
- bool bOpenGL; // create a OpenGL providing NSView
+ bool bOpenGL; // create an OpenGL providing NSView
bool bLegacy; // create a 2.1 legacy context, only valid if bOpenGL == true
#elif defined( ANDROID )
// Nothing
diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx
index a9d2893d68b3..039b7f8ac387 100644
--- a/l10ntools/inc/xmlparse.hxx
+++ b/l10ntools/inc/xmlparse.hxx
@@ -248,7 +248,7 @@ public:
/// create a data node
XMLData(
const OString &rData, // the initial data
- XMLParentNode *pParent // the parent node of this data, typically a element node
+ XMLParentNode *pParent // the parent node of this data, typically an element node
)
: XMLChildNode( pParent ), m_sData( rData ) {}
@@ -274,7 +274,7 @@ public:
/// create a comment node
XMLComment(
const OString &rComment, // the comment
- XMLParentNode *pParent // the parent node of this comemnt, typically a element node
+ XMLParentNode *pParent // the parent node of this comemnt, typically an element node
)
: XMLChildNode( pParent ), m_sComment( rComment ) {}
@@ -297,7 +297,7 @@ public:
/// create a comment node
XMLDefault(
const OString &rDefault, // the comment
- XMLParentNode *pParent // the parent node of this comemnt, typically a element node
+ XMLParentNode *pParent // the parent node of this comemnt, typically an element node
)
: XMLChildNode( pParent ), m_sDefault( rDefault ) {}
diff --git a/lotuswordpro/inc/xfilter/ixfattrlist.hxx b/lotuswordpro/inc/xfilter/ixfattrlist.hxx
index 0867cf6d3929..af68a9ded324 100644
--- a/lotuswordpro/inc/xfilter/ixfattrlist.hxx
+++ b/lotuswordpro/inc/xfilter/ixfattrlist.hxx
@@ -73,7 +73,7 @@ class IXFAttrList
public:
virtual ~IXFAttrList(){}
/**
- * @descr: Add a attribute to the attribute list.
+ * @descr: Add an attribute to the attribute list.
*/
virtual void AddAttribute(const OUString& name, const OUString& value) = 0;
diff --git a/offapi/com/sun/star/drawing/XCustomShapeHandle.idl b/offapi/com/sun/star/drawing/XCustomShapeHandle.idl
index 0171bdb0f7c4..1e4f092a4164 100644
--- a/offapi/com/sun/star/drawing/XCustomShapeHandle.idl
+++ b/offapi/com/sun/star/drawing/XCustomShapeHandle.idl
@@ -34,7 +34,7 @@ interface XCustomShapeHandle: com::sun::star::uno::XInterface
/** is getting the actual handle position
@returns
- a the actual handle position
+ the actual handle position
*/
com::sun::star::awt::Point getPosition();
diff --git a/offapi/com/sun/star/embed/EmbeddedObjectDescriptor.idl b/offapi/com/sun/star/embed/EmbeddedObjectDescriptor.idl
index 30752068dffd..02ff3adf50fb 100644
--- a/offapi/com/sun/star/embed/EmbeddedObjectDescriptor.idl
+++ b/offapi/com/sun/star/embed/EmbeddedObjectDescriptor.idl
@@ -50,7 +50,7 @@ published service EmbeddedObjectDescriptor
<p>
Setting of this property to true tells the embedded object that
controls the document to store or not to store the graphical
- representation of the document in to the object persistence.
+ representation of the document into the object persistence.
If this property is not set the object makes the decision itself.
</p>
*/
diff --git a/offapi/com/sun/star/report/XFormattedField.idl b/offapi/com/sun/star/report/XFormattedField.idl
index 8d668a2dee0c..7e3d51cf3dcb 100644
--- a/offapi/com/sun/star/report/XFormattedField.idl
+++ b/offapi/com/sun/star/report/XFormattedField.idl
@@ -25,7 +25,7 @@
module com { module sun { module star { module report {
-/** describes a control which can be used for displaying values with a arbitrary formatting.
+/** describes a control which can be used for displaying values with an arbitrary formatting.
@see com::sun::star::report::XReportControlModel
@see com::sun::star::util::XNumberFormatsSupplier
diff --git a/offapi/com/sun/star/report/XReportControlFormat.idl b/offapi/com/sun/star/report/XReportControlFormat.idl
index 42926ff53955..767addd5b313 100644
--- a/offapi/com/sun/star/report/XReportControlFormat.idl
+++ b/offapi/com/sun/star/report/XReportControlFormat.idl
@@ -42,7 +42,7 @@ interface XReportControlFormat
get raises ( com::sun::star::beans::UnknownPropertyException );
};
- /** determines if the back ground color is set to transparent.
+ /** determines if the background color is set to transparent.
*/
[attribute,bound] boolean ControlBackgroundTransparent
{
diff --git a/offapi/com/sun/star/report/XSection.idl b/offapi/com/sun/star/report/XSection.idl
index aed2cbe98c7b..ae10e2dd837d 100644
--- a/offapi/com/sun/star/report/XSection.idl
+++ b/offapi/com/sun/star/report/XSection.idl
@@ -78,11 +78,11 @@ interface XSection
*/
[attribute,bound] unsigned long Height;
- /** Defines the back ground color of the section.
+ /** Defines the background color of the section.
*/
[attribute,bound] com::sun::star::util::Color BackColor;
- /** determines if the back ground color is set to transparent.
+ /** determines if the background color is set to transparent.
*/
[attribute,bound] boolean BackTransparent;
diff --git a/offapi/com/sun/star/resource/XStringResourcePersistence.idl b/offapi/com/sun/star/resource/XStringResourcePersistence.idl
index cb950d94cce1..496ec34567e2 100644
--- a/offapi/com/sun/star/resource/XStringResourcePersistence.idl
+++ b/offapi/com/sun/star/resource/XStringResourcePersistence.idl
@@ -30,7 +30,7 @@ module com { module sun { module star { module resource {
/**
Interface derived from XStringResourceManager containing
basic persistence functionality limited to operations that
- are independent from a associated location or storage.
+ are independent from an associated location or storage.
@see XStringResourceManager.
*/
diff --git a/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl b/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl
index 50d58b5c1946..4a531f587391 100644
--- a/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl
+++ b/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl
@@ -29,7 +29,7 @@ module com { module sun { module star { module script {
/** is the interface for an XLibraryContainer which can be made
- persistent in an com::sun::star::embed::XStorage.
+ persistent in a com::sun::star::embed::XStorage.
<p>A persistent library container is associated with a root storage. The
container is responsible for a particular sub storage of the root storage,
diff --git a/offapi/com/sun/star/sdb/ColumnDescriptorControlModel.idl b/offapi/com/sun/star/sdb/ColumnDescriptorControlModel.idl
index dfaa66af893d..079646ab2396 100644
--- a/offapi/com/sun/star/sdb/ColumnDescriptorControlModel.idl
+++ b/offapi/com/sun/star/sdb/ColumnDescriptorControlModel.idl
@@ -33,7 +33,7 @@
module com { module sun { module star { module sdb {
-/** specifies the standard model of an ColumnDescriptorControl.
+/** specifies the standard model of a ColumnDescriptorControl.
*/
service ColumnDescriptorControlModel
{
diff --git a/offapi/com/sun/star/sdb/DatabaseInteractionHandler.idl b/offapi/com/sun/star/sdb/DatabaseInteractionHandler.idl
index bf9da7cd7c3c..79f6174525e0 100644
--- a/offapi/com/sun/star/sdb/DatabaseInteractionHandler.idl
+++ b/offapi/com/sun/star/sdb/DatabaseInteractionHandler.idl
@@ -41,7 +41,7 @@ module com { module sun { module star { module sdb {
in the exception.
</li>
<li><b>parameter requests</b><br/>
- If your interaction request supplies an com::sun::star::sdb::ParametersRequest,
+ If your interaction request supplies a com::sun::star::sdb::ParametersRequest,
the handler will open a standard dialog asking the user to fill in parameter values.
<br/>
In the case you want to use this feature of the handler, you should supply a special continuation
diff --git a/offapi/com/sun/star/sdb/OfficeDatabaseDocument.idl b/offapi/com/sun/star/sdb/OfficeDatabaseDocument.idl
index f4b08e65a15f..90f1edc0f67f 100644
--- a/offapi/com/sun/star/sdb/OfficeDatabaseDocument.idl
+++ b/offapi/com/sun/star/sdb/OfficeDatabaseDocument.idl
@@ -28,7 +28,7 @@
module com { module sun { module star { module sdb {
-/** specifies a office database document which is a storable document.
+/** specifies an office database document which is a storable document.
<p>These documents contain information about forms, and reports, and the properties of a data source.</p>
@@ -202,7 +202,7 @@ service OfficeDatabaseDocument
/** implements life time control
- <p>Whoever retrieves a OfficeDatabaseDocument should be aware of
+ <p>Whoever retrieves an OfficeDatabaseDocument should be aware of
life time issues, since a document needs to be closed when nobody needs it anymore.</p>
<p>This implies that clients of a document need to ensure that as soon as they don't
diff --git a/offapi/com/sun/star/sdb/RelationDesign.idl b/offapi/com/sun/star/sdb/RelationDesign.idl
index 1e717164830e..e394917d4f61 100644
--- a/offapi/com/sun/star/sdb/RelationDesign.idl
+++ b/offapi/com/sun/star/sdb/RelationDesign.idl
@@ -57,7 +57,7 @@ published service RelationDesign
Recognized parameters are:
<ul>
<li><b>Frame</b><br>
- has to be an com::sun::star::frame::XFrame interface specifying the frame to plug the
+ has to be a com::sun::star::frame::XFrame interface specifying the frame to plug the
RelationDesign component into.
</li>
<li><b>DataSourceName</b><br>