summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-07-06 17:56:22 +0200
committerJens Carl <j.carl43@gmx.de>2018-07-08 10:01:48 +0200
commitdc8ed4b8e1fa5ed3b934bfcf5999ddb75ea07b0a (patch)
treecaf18e7c4781a02c46f620d92787b5dc0ebbbb35
parentloplugin:passstuffbyref (diff)
downloadcore-dc8ed4b8e1fa5ed3b934bfcf5999ddb75ea07b0a.tar.gz
core-dc8ed4b8e1fa5ed3b934bfcf5999ddb75ea07b0a.zip
Fix typo
Change-Id: I1cc4544e807d7c04aa171358ccd1c204040dff55 Reviewed-on: https://gerrit.libreoffice.org/57078 Tested-by: Jenkins Reviewed-by: Jens Carl <j.carl43@gmx.de>
-rw-r--r--dbaccess/source/filter/hsqldb/fbcreateparser.cxx2
-rw-r--r--framework/source/dispatch/closedispatcher.cxx2
-rw-r--r--framework/source/jobs/jobdata.cxx6
-rw-r--r--framework/source/services/pathsettings.cxx2
-rw-r--r--offapi/com/sun/star/document/FilterFactory.idl2
-rw-r--r--offapi/com/sun/star/util/XStringSubstitution.idl6
-rw-r--r--qadevOOo/runner/lib/TestCase.java2
-rw-r--r--ridljar/com/sun/star/uno/UnoRuntime.java6
-rw-r--r--sc/source/filter/excel/excform.cxx2
-rw-r--r--sc/source/filter/excel/xihelper.cxx2
-rw-r--r--sc/source/filter/excel/xilink.cxx2
-rw-r--r--svtools/source/misc/acceleratorexecute.cxx4
-rw-r--r--sw/source/filter/ww8/ww8par6.cxx2
-rw-r--r--vcl/source/graphic/GraphicObject.cxx2
14 files changed, 21 insertions, 21 deletions
diff --git a/dbaccess/source/filter/hsqldb/fbcreateparser.cxx b/dbaccess/source/filter/hsqldb/fbcreateparser.cxx
index 768c7286185b..aed3552536e3 100644
--- a/dbaccess/source/filter/hsqldb/fbcreateparser.cxx
+++ b/dbaccess/source/filter/hsqldb/fbcreateparser.cxx
@@ -86,7 +86,7 @@ OUString lcl_DataTypetoFbTypeName(sal_Int32 eType)
OUString lcl_getTypeModifier(sal_Int32 eType)
{
// TODO bind -9546 magic number to a common definition. It also appears
- // in the connectivity modul.
+ // in the connectivity module.
switch (eType)
{
case DataType::CLOB:
diff --git a/framework/source/dispatch/closedispatcher.cxx b/framework/source/dispatch/closedispatcher.cxx
index b986b9a9467f..d3c77c970fde 100644
--- a/framework/source/dispatch/closedispatcher.cxx
+++ b/framework/source/dispatch/closedispatcher.cxx
@@ -414,7 +414,7 @@ IMPL_LINK_NOARG(CloseDispatcher, impl_asyncCallback, LinkParamNone*, void)
// This method was called asynchronous from our main thread by using a pointer.
// We reached this method only, by using a reference to ourself :-)
// Further this member is used to detect still running and not yet finished
- // asynchronous operations. So its time now to release this reference.
+ // asynchronous operations. So it's time now to release this reference.
// But hold it temp alive. Otherwise we die before we can finish this method really :-))
css::uno::Reference< css::uno::XInterface > xTempHold = m_xSelfHold;
m_xSelfHold.clear();
diff --git a/framework/source/jobs/jobdata.cxx b/framework/source/jobs/jobdata.cxx
index 05ab9f0145b2..b2f0eb254743 100644
--- a/framework/source/jobs/jobdata.cxx
+++ b/framework/source/jobs/jobdata.cxx
@@ -525,9 +525,9 @@ std::vector< OUString > JobData::getEnabledJobsForEvent( const css::uno::Referen
return std::vector< OUString >();
// get all alias names of jobs, which are part of this job list
- // But Some of them can be disabled by its time stamp values.
- // We create an additional job name list with the same size, then the original list ...
- // step over all job entries ... check her time stamps ... and put only job names to the
+ // But Some of them can be disabled by its timestamp values.
+ // We create an additional job name list with the same size, then the original list...
+ // step over all job entries... check her timestamps... and put only job names to the
// destination list, which represent an enabled job.
css::uno::Sequence< OUString > lAllJobs = xJobList->getElementNames();
sal_Int32 c = lAllJobs.getLength();
diff --git a/framework/source/services/pathsettings.cxx b/framework/source/services/pathsettings.cxx
index f24d4976c604..e047ee53057e 100644
--- a/framework/source/services/pathsettings.cxx
+++ b/framework/source/services/pathsettings.cxx
@@ -396,7 +396,7 @@ private:
void impl_rebuildPropertyDescriptor();
/** provides direct access to the list of path values
- using it's internal property id.
+ using its internal property id.
*/
css::uno::Any impl_getPathValue( sal_Int32 nID ) const;
void impl_setPathValue( sal_Int32 nID ,
diff --git a/offapi/com/sun/star/document/FilterFactory.idl b/offapi/com/sun/star/document/FilterFactory.idl
index df7f35c60526..120d6128b9c1 100644
--- a/offapi/com/sun/star/document/FilterFactory.idl
+++ b/offapi/com/sun/star/document/FilterFactory.idl
@@ -51,7 +51,7 @@ published service FilterFactory
The methods createInstance() or createInstanceWithArguments() of this interface must be
called with an internal type name!. This name is used internally to search a suitable
(mostly the default) filter for this type then. The found filter will be created, initialized
- and returned then. Creation of a filter by using it's internal filter name directly can be
+ and returned then. Creation of a filter by using its internal filter name directly can be
reached by using createInstanceWithArguments() with an optional property "FilterName" only.
See the following example:
diff --git a/offapi/com/sun/star/util/XStringSubstitution.idl b/offapi/com/sun/star/util/XStringSubstitution.idl
index 0c477cafc9f5..7d20fb74bcef 100644
--- a/offapi/com/sun/star/util/XStringSubstitution.idl
+++ b/offapi/com/sun/star/util/XStringSubstitution.idl
@@ -43,7 +43,7 @@ published interface XStringSubstitution : com::sun::star::uno::XInterface
defined for the variables.
<p>
- The method iterates through it's internal variables list to match the
+ The method iterates through its internal variables list to match the
variables in the given string. A match replaces the variable with the
string defined for this variable. If no variable can be found in the string
it will be returned unchanged. The behavior if a variable is found in
@@ -71,7 +71,7 @@ published interface XStringSubstitution : com::sun::star::uno::XInterface
these sub strings.
<p>
- The method iterates through it's internal variable list and tries to match
+ The method iterates through its internal variable list and tries to match
parts of the given string Tries to replace parts of <var>aText</var> with
variables that represents these sub strings.If more than one variable
matches the one with the longest matching sub string will be chosen.
@@ -91,7 +91,7 @@ published interface XStringSubstitution : com::sun::star::uno::XInterface
/** Returns the current value of a variable.
<p>
- The method iterates through it's internal variable list and tries to
+ The method iterates through its internal variable list and tries to
find the given variable. If the variable is unknown a
com::sun::star::container::NoSuchElementException
is thrown.
diff --git a/qadevOOo/runner/lib/TestCase.java b/qadevOOo/runner/lib/TestCase.java
index e68eff62e15e..e5a628a2a1ab 100644
--- a/qadevOOo/runner/lib/TestCase.java
+++ b/qadevOOo/runner/lib/TestCase.java
@@ -38,7 +38,7 @@ import java.io.PrintWriter;
* <code>TestEnvironment</code> instances. The
* <code>createTestEnvironment()</code> is called to create a
* <code>TestEnvironment</code> instance and the
- * <code>disposeTestEnvironment()</code> is called when the instane is not used
+ * <code>disposeTestEnvironment()</code> is called when the instance is not used
* anymore.
*
* @see lib.TestEnvironment
diff --git a/ridljar/com/sun/star/uno/UnoRuntime.java b/ridljar/com/sun/star/uno/UnoRuntime.java
index 99da56aa9ea8..9707157e64fe 100644
--- a/ridljar/com/sun/star/uno/UnoRuntime.java
+++ b/ridljar/com/sun/star/uno/UnoRuntime.java
@@ -57,10 +57,10 @@ public class UnoRuntime {
public UnoRuntime() {}
/**
- * Generates a world wide unique identifier string.
+ * Generates a worldwide unique identifier string.
*
* <p>It is guaranteed that every invocation of this method generates a new
- * ID, which is unique within the VM. The quality of &ldquo;world wide
+ * ID, which is unique within the VM. The quality of &ldquo;worldwide
* unique&rdquo; will depend on the actual implementation, you should look
* at the source to determine if it meets your requirements.</p>
*
@@ -89,7 +89,7 @@ public class UnoRuntime {
}
/**
- * Generates a world wide unique object identifier (OID) for the given
+ * Generates a worldwide unique object identifier (OID) for the given
* Java object.
*
* <p>It is guaranteed that subsequent calls to this method with the same
diff --git a/sc/source/filter/excel/excform.cxx b/sc/source/filter/excel/excform.cxx
index b7c7afab7ba6..7f9893f53bd1 100644
--- a/sc/source/filter/excel/excform.cxx
+++ b/sc/source/filter/excel/excform.cxx
@@ -1810,7 +1810,7 @@ void ExcelToSc::ReadExtensionArray( unsigned int n, XclImpStream& aIn )
OSL_FAIL( "ExcelToSc::ReadExtensionArray - missing matrix" );
}
- //assuming worse case scenario of unknown types
+ //assuming worst case scenario of unknown types
const size_t nMinRecordSize = 1;
const size_t nMaxRows = aIn.GetRecLeft() / (nMinRecordSize * nCols);
if (nRows > nMaxRows)
diff --git a/sc/source/filter/excel/xihelper.cxx b/sc/source/filter/excel/xihelper.cxx
index 862d9629104d..9ce3c500c9fa 100644
--- a/sc/source/filter/excel/xihelper.cxx
+++ b/sc/source/filter/excel/xihelper.cxx
@@ -834,7 +834,7 @@ XclImpCachedMatrix::XclImpCachedMatrix( XclImpStream& rStrm ) :
++mnScRows;
}
- //assuming worse case scenario of unknown types
+ //assuming worst case scenario of unknown types
const size_t nMinRecordSize = 1;
const size_t nMaxRows = rStrm.GetRecLeft() / (nMinRecordSize * mnScCols);
if (mnScRows > nMaxRows)
diff --git a/sc/source/filter/excel/xilink.cxx b/sc/source/filter/excel/xilink.cxx
index 2b1a2f2bb427..1bc3f16fd18c 100644
--- a/sc/source/filter/excel/xilink.cxx
+++ b/sc/source/filter/excel/xilink.cxx
@@ -275,7 +275,7 @@ XclImpExtName::MOper::MOper(svl::SharedStringPool& rPool, XclImpStream& rStrm) :
SCSIZE nLastCol = rStrm.ReaduInt8();
SCSIZE nLastRow = rStrm.ReaduInt16();
- //assuming worse case scenario of nOp + one byte unistring len
+ //assuming worst case scenario of nOp + one byte unistring len
const size_t nMinRecordSize = 2;
const size_t nMaxRows = rStrm.GetRecLeft() / (nMinRecordSize * (nLastCol+1));
if (nLastRow >= nMaxRows)
diff --git a/svtools/source/misc/acceleratorexecute.cxx b/svtools/source/misc/acceleratorexecute.cxx
index 265408fe10d0..6d4737334dce 100644
--- a/svtools/source/misc/acceleratorexecute.cxx
+++ b/svtools/source/misc/acceleratorexecute.cxx
@@ -53,8 +53,8 @@ class AsyncAccelExec : public cppu::WeakImplHelper<css::lang::XEventListener>
/** creates a new instance of this class, which can be used
one times only!
- This instance can be forced to execute it's internal set request
- asynchronous. After that it deletes itself !
+ This instance can be forced to execute its internal set request
+ asynchronous. After that it deletes itself!
*/
static AsyncAccelExec* createOneShotInstance(const css::uno::Reference<css::lang::XComponent>& xFrame,
const css::uno::Reference<css::frame::XDispatch>& xDispatch,
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index f53501c2485c..fbc3ecf271bb 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -1915,7 +1915,7 @@ bToggelPos(false)
// #i36649# - adjustments for certain horizontal alignments
// Note: These special adjustments found by an investigation of documents
// containing frames with different left/right border distances and
- // distances to text. The outcome is some how strange.
+ // distances to text. The outcome is somehow strange.
// Note: These adjustments causes wrong horizontal positions for frames,
// which are aligned inside|outside to page|margin on even pages,
// the left and right border distances are different.
diff --git a/vcl/source/graphic/GraphicObject.cxx b/vcl/source/graphic/GraphicObject.cxx
index c855c901b27c..be83c89d0312 100644
--- a/vcl/source/graphic/GraphicObject.cxx
+++ b/vcl/source/graphic/GraphicObject.cxx
@@ -746,7 +746,7 @@ Graphic GraphicObject::GetTransformedGraphic( const Size& rDestSize, const MapMo
&& aSrcSizePixel.Width())
{
// the size in pixels calculated from Graphic's internal MapMode (aTransGraphic.GetPrefMapMode())
- // and it's internal size (aTransGraphic.GetPrefSize()) is different from its real pixel size.
+ // and its internal size (aTransGraphic.GetPrefSize()) is different from its real pixel size.
// This can be interpreted as this values to be set wrong, but needs to be corrected since e.g.
// existing cropping is calculated based on this logic values already.
// aBitmapEx.Scale(aSrcSizePixel);