Kaydet (Commit) dc8ed4b8 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Jens Carl

Fix typo

Change-Id: I1cc4544e807d7c04aa171358ccd1c204040dff55
Reviewed-on: https://gerrit.libreoffice.org/57078
Tested-by: Jenkins
Reviewed-by: 's avatarJens Carl <j.carl43@gmx.de>
üst 40b1e5d4
......@@ -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:
......
......@@ -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();
......
......@@ -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();
......
......@@ -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 ,
......
......@@ -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:
......
......@@ -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.
......
......@@ -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
......
......@@ -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
......
......@@ -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)
......
......@@ -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)
......
......@@ -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)
......
......@@ -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,
......
......@@ -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.
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment