summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-17 00:31:43 +0100
committerMichael Stahl <mstahl@redhat.com>2018-01-17 12:06:11 +0100
commitc66fe94d3e9cc1394dd4b569a3d8f374208a729b (patch)
tree2c5a681c0903755e492de63c4f41c9c5d844ee8c
parentandroid: make compat header self-contained (diff)
downloadcore-c66fe94d3e9cc1394dd4b569a3d8f374208a729b.tar.gz
core-c66fe94d3e9cc1394dd4b569a3d8f374208a729b.zip
Fix typos
Change-Id: I5fff9ccb1bc74b85ee378439ffa2272583ffcb0f Reviewed-on: https://gerrit.libreoffice.org/48024 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r--desktop/source/deployment/inc/lockfile.hxx2
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_draw.xsl2
-rw-r--r--i18npool/source/breakiterator/data/README2
-rw-r--r--include/basic/sbstar.hxx2
-rw-r--r--include/osl/file.hxx6
-rw-r--r--jurt/com/sun/star/uno/MappingException.java6
-rw-r--r--odk/examples/examples.html2
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationController.idl2
-rw-r--r--qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java2
-rw-r--r--sd/source/ui/inc/fusel.hxx2
-rw-r--r--sw/source/core/layout/frmtool.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par6.cxx2
-rw-r--r--sw/source/uibase/app/docsh2.cxx2
-rw-r--r--winaccessibility/source/UAccCOM/EnumVariant.cxx4
-rw-r--r--writerfilter/source/dmapper/DomainMapper.cxx2
15 files changed, 20 insertions, 20 deletions
diff --git a/desktop/source/deployment/inc/lockfile.hxx b/desktop/source/deployment/inc/lockfile.hxx
index 8e2fea7b60dc..07dbc3446f3d 100644
--- a/desktop/source/deployment/inc/lockfile.hxx
+++ b/desktop/source/deployment/inc/lockfile.hxx
@@ -57,7 +57,7 @@ namespace desktop {
{
public:
- // contructs a new lockfile onject
+ // constructs a new lockfile onject
Lockfile( bool bIPCserver = true );
// separating GUI code:
diff --git a/filter/source/xslt/export/wordml/ooo2wordml_draw.xsl b/filter/source/xslt/export/wordml/ooo2wordml_draw.xsl
index 18495dcf2c2f..3e009aefafc8 100644
--- a/filter/source/xslt/export/wordml/ooo2wordml_draw.xsl
+++ b/filter/source/xslt/export/wordml/ooo2wordml_draw.xsl
@@ -967,7 +967,7 @@
<xsl:with-param name="value" select="key('page-layout',$pagemaster)/style:page-layout-properties/@fo:margin-top"/>
</xsl:call-template>
</xsl:variable>
- <!-- addjust the x and y values of the page archored objects-->
+ <!-- adjust the x and y values of the page archored objects-->
<xsl:variable name="x">
<xsl:choose>
<xsl:when test="@text:anchor-type='page' or ancestor::draw:*/@text:anchor-type='page'">
diff --git a/i18npool/source/breakiterator/data/README b/i18npool/source/breakiterator/data/README
index 65c1f46a1c1b..a95306608887 100644
--- a/i18npool/source/breakiterator/data/README
+++ b/i18npool/source/breakiterator/data/README
@@ -37,7 +37,7 @@ Author: RĂ¼diger Timm <rt@openoffice.org>
Date: Wed Jul 2 07:52:44 2008 +0000
INTEGRATION: CWS i18n41 (1.9.12); FILE MERGED
- 2008/06/17 20:22:30 khong 1.9.12.2: i83229 fix the problem of leading hyphen for nubmers
+ 2008/06/17 20:22:30 khong 1.9.12.2: i83229 fix the problem of leading hyphen for numbers
2008/04/23 06:20:16 khong 1.9.12.1: i72868, i80891, i83229, fix Chinese punctuations and hyphen for line breakiterator
commit 55dff22611659a1567c968fbf9e512a2765ab62e
diff --git a/include/basic/sbstar.hxx b/include/basic/sbstar.hxx
index 8774f524c6c0..86b0d8e7a0c6 100644
--- a/include/basic/sbstar.hxx
+++ b/include/basic/sbstar.hxx
@@ -86,7 +86,7 @@ public:
StarBASIC( StarBASIC* pParent = nullptr, bool bIsDocBasic = false );
- // #51727 SetModified overridden so that the Modfied-State is
+ // #51727 SetModified overridden so that the Modified-State is
// not delivered to Parent.
virtual void SetModified( bool ) override;
diff --git a/include/osl/file.hxx b/include/osl/file.hxx
index 73065a4ebcec..f6764f14ed27 100644
--- a/include/osl/file.hxx
+++ b/include/osl/file.hxx
@@ -412,7 +412,7 @@ class VolumeInfo
VolumeInfo( VolumeInfo& ) SAL_DELETED_FUNCTION;
- /** Assginment operator.
+ /** Assignment operator.
*/
VolumeInfo& operator = ( VolumeInfo& ) SAL_DELETED_FUNCTION;
@@ -460,7 +460,7 @@ public:
return (_aInfo.uAttributes & osl_Volume_Attribute_Remote) != 0;
}
- /** Check the removeable flag.
+ /** Check the removable flag.
@return
true if attributes are valid and the volume is removable else false.
@@ -896,7 +896,7 @@ class File: public FileBase
File( File& ) SAL_DELETED_FUNCTION;
- /** Assginment operator.
+ /** Assignment operator.
*/
File& operator = ( File& ) SAL_DELETED_FUNCTION;
diff --git a/jurt/com/sun/star/uno/MappingException.java b/jurt/com/sun/star/uno/MappingException.java
index a67ddf9dfd84..b386e4512c70 100644
--- a/jurt/com/sun/star/uno/MappingException.java
+++ b/jurt/com/sun/star/uno/MappingException.java
@@ -33,14 +33,14 @@ package com.sun.star.uno;
*/
public class MappingException extends com.sun.star.uno.RuntimeException {
/**
- * Contructs an empty <code>MappingException</code>.
+ * Constructs an empty <code>MappingException</code>.
*/
public MappingException() {
super();
}
/**
- * Contructs an <code>MappingException</code> with a detail message.
+ * Constructs an <code>MappingException</code> with a detail message.
*
* @param message the detail message.
*/
@@ -49,7 +49,7 @@ public class MappingException extends com.sun.star.uno.RuntimeException {
}
/**
- * Contructs an <code>MappingException</code> with a detail message and a
+ * Constructs an <code>MappingException</code> with a detail message and a
* context.
*
* @param message the detail message.
diff --git a/odk/examples/examples.html b/odk/examples/examples.html
index 22a465b173af..4d3a3acff4c9 100644
--- a/odk/examples/examples.html
+++ b/odk/examples/examples.html
@@ -23,7 +23,7 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
</head>
<body>
- <a name="exapmles"></a>
+ <a name="examples"></a>
<div id="BgContainer">
<div id="Container">
<div id="TopHeader">
diff --git a/offapi/com/sun/star/drawing/framework/XConfigurationController.idl b/offapi/com/sun/star/drawing/framework/XConfigurationController.idl
index 344315647532..b41e24a8140b 100644
--- a/offapi/com/sun/star/drawing/framework/XConfigurationController.idl
+++ b/offapi/com/sun/star/drawing/framework/XConfigurationController.idl
@@ -152,7 +152,7 @@ interface XConfigurationController
@param eMode
<p>When eMode is REPLACE then, before adding the
resource activation to the request queue, similar resources
- linked to the same anchor are removed. This makes it easer to
+ linked to the same anchor are removed. This make it easier to
switch between resources whose activation is mutually exclusive.
For example, there can only be one view per pane, so before
activating a new view the old one has to be deactivated.</p>
diff --git a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java
index 0c4accdafabf..7793a8cddf4d 100644
--- a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java
+++ b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java
@@ -104,7 +104,7 @@ public class _XExtendedIndexEntrySupplier extends MultiMethodTest {
}
/*
- * gets one phonetic canidate for the chinese local
+ * gets one phonetic candidate for the chinese local
* is ok if 'yi' is returned as expected.
*/
public void _getPhoneticCandidate() {
diff --git a/sd/source/ui/inc/fusel.hxx b/sd/source/ui/inc/fusel.hxx
index 10904a9cd892..a95f6f098446 100644
--- a/sd/source/ui/inc/fusel.hxx
+++ b/sd/source/ui/inc/fusel.hxx
@@ -80,7 +80,7 @@ private:
sal_uInt16 nEditMode;
css::uno::Reference< css::media::XPlayer > mxPlayer;
- /** This pointer stores a canidate for assigning a style in the water
+ /** This pointer stores a candidate for assigning a style in the water
can mode between mouse button down and mouse button up.
*/
SdrObject* pWaterCanCandidate;
diff --git a/sw/source/core/layout/frmtool.cxx b/sw/source/core/layout/frmtool.cxx
index db2395c70a7c..e12f02a8ffab 100644
--- a/sw/source/core/layout/frmtool.cxx
+++ b/sw/source/core/layout/frmtool.cxx
@@ -2331,7 +2331,7 @@ SwFrame *SaveContent( SwLayoutFrame *pLay, SwFrame *pStart )
return nullptr;
}
- // Tables should be saved as a whole, expection:
+ // Tables should be saved as a whole, exception:
// The contents of a section or a cell inside a table should be saved
if ( pSav->IsInTab() && !( ( pLay->IsSctFrame() || pLay->IsCellFrame() ) && pLay->IsInTab() ) )
while ( !pSav->IsTabFrame() )
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index 7b5947ec34b6..5d4506e4a1a8 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -1166,7 +1166,7 @@ void wwSectionManager::CreateSep(const long nTextPos)
{
WW8_CP nStart, nLen;
mrReader.m_xHdFt->GetTextPosExact( static_cast< short >(nI + ( maSegments.size() + 1) * 6), nStart, nLen);
- //No header or footer, inherit pervious one, or set to zero
+ //No header or footer, inherit previous one, or set to zero
//if no previous one
if (!nLen)
{
diff --git a/sw/source/uibase/app/docsh2.cxx b/sw/source/uibase/app/docsh2.cxx
index 2b9d958be96f..208b6b32ce04 100644
--- a/sw/source/uibase/app/docsh2.cxx
+++ b/sw/source/uibase/app/docsh2.cxx
@@ -1401,7 +1401,7 @@ void SwDocShell::ReloadFromHtml( const OUString& rStreamName, SwSrcView* pSrcVie
bool bModified = IsModified();
// The HTTP-Header fields have to be removed, otherwise
- // there are some from Meta-Tags dublicated or triplicated afterwards.
+ // there are some from Meta-Tags duplicated or triplicated afterwards.
ClearHeaderAttributesForSourceViewHack();
#if HAVE_FEATURE_SCRIPTING
diff --git a/winaccessibility/source/UAccCOM/EnumVariant.cxx b/winaccessibility/source/UAccCOM/EnumVariant.cxx
index 7290de29b0f4..ba2d443ca91f 100644
--- a/winaccessibility/source/UAccCOM/EnumVariant.cxx
+++ b/winaccessibility/source/UAccCOM/EnumVariant.cxx
@@ -40,7 +40,7 @@ using namespace com::sun::star::accessibility;
/**
- * enumarate method,get next element
+ * enumerate method,get next element
* @param cElements The number of elements to be returned.
* @param pvar An array of at least size celt in which the elements are to be returned.
* @param pcElementFetched Pointer to the number of elements returned in rgVar, or Null
@@ -94,7 +94,7 @@ HRESULT STDMETHODCALLTYPE CEnumVariant::Next(ULONG cElements,VARIANT __RPC_FAR *
}
/**
- * skip the elements in the given range when enumarate elements
+ * skip the elements in the given range when enumerate elements
* @param cElements The number of elements to skip.
* @return Result.
*/
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx
index 2d56bd9a449b..32945c9d6bb4 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -2705,7 +2705,7 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, const PropertyMapPtr& rContext )
break;
case NS_ooxml::LN_CT_SdtPr_rPr:
{
- // Make sure properties from a pervious SDT are not merged with the current ones.
+ // Make sure properties from a previous SDT are not merged with the current ones.
m_pImpl->m_pSdtHelper->getInteropGrabBagAndClear();
}
break;