filter/source/config/cache/typedetection.hxx | 2 +- filter/source/svg/svgwriter.cxx | 4 ++-- offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl | 2 +- oox/source/drawingml/chart/typegroupconverter.cxx | 2 +- sfx2/source/doc/sfxmodelfactory.cxx | 2 +- sw/source/core/layout/tabfrm.cxx | 2 +- vcl/inc/vcl/field.hxx | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-)
New commits: commit e08a9a9d79826a9193a9508b8af0454131dfd952 Author: Matthias Seidel <[email protected]> AuthorDate: Fri Dec 28 00:30:07 2018 +0000 Commit: Matthias Seidel <[email protected]> CommitDate: Fri Dec 28 00:30:07 2018 +0000 Fixed typos (bahaviour -> behaviour) diff --git a/oox/source/drawingml/chart/typegroupconverter.cxx b/oox/source/drawingml/chart/typegroupconverter.cxx index afaffd81adc4..b617444820e2 100644 --- a/oox/source/drawingml/chart/typegroupconverter.cxx +++ b/oox/source/drawingml/chart/typegroupconverter.cxx @@ -277,7 +277,7 @@ Reference< XCoordinateSystem > TypeGroupConverter::createCoordinateSystem() Reference< XLabeledDataSequence > TypeGroupConverter::createCategorySequence() { Reference< XLabeledDataSequence > xLabeledSeq; - /* Find first existing category sequence. The bahaviour of Excel 2007 is + /* Find first existing category sequence. The behaviour of Excel 2007 is different to Excel 2003, which always used the category sequence of the first series, even if it was empty. */ for( TypeGroupModel::SeriesVector::iterator aIt = mrModel.maSeries.begin(), aEnd = mrModel.maSeries.end(); !xLabeledSeq.is() && (aIt != aEnd); ++aIt ) diff --git a/sfx2/source/doc/sfxmodelfactory.cxx b/sfx2/source/doc/sfxmodelfactory.cxx index 4a3b6f222c13..6e811b6b0ab2 100644 --- a/sfx2/source/doc/sfxmodelfactory.cxx +++ b/sfx2/source/doc/sfxmodelfactory.cxx @@ -177,7 +177,7 @@ namespace sfx2 Reference< XInterface > xInstance( impl_createInstance( nCreationFlags ) ); - // to mimic the bahaviour of the default factory's createInstanceWithArguments, we initialize + // to mimic the behaviour of the default factory's createInstanceWithArguments, we initialize // the object with the given arguments, stripped by the three special ones Sequence< Any > aStrippedArguments( _rArguments.getLength() ); Any* pStrippedArgs = aStrippedArguments.getArray(); diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx index 18fc3843f618..31749d83a2fa 100644 --- a/sw/source/core/layout/tabfrm.cxx +++ b/sw/source/core/layout/tabfrm.cxx @@ -934,7 +934,7 @@ bool SwTabFrm::RemoveFollowFlowLine() pLastLine, "There should be a flowline in the follow" ) // We have to reset the flag here, because lcl_MoveRowContent - // calls a GrowFrm(), which has a different bahavior if + // calls a GrowFrm(), which has a different behaviour if // this flag is set. SetFollowFlowLine( sal_False ); diff --git a/vcl/inc/vcl/field.hxx b/vcl/inc/vcl/field.hxx index 0ca2c3802cdf..bee33c159680 100644 --- a/vcl/inc/vcl/field.hxx +++ b/vcl/inc/vcl/field.hxx @@ -398,7 +398,7 @@ public: If this is set to <TRUE/> (which is the default), then GetDate will always return a valid date, no matter whether the current text can really be interpreted as date. (Note: this - is the compatible bahavior). + is the compatible behaviour). If this is set to <FALSE/>, the GetDate will return GetInvalidDate, in case the current text cannot be interpreted as date. @@ -482,7 +482,7 @@ public: If this is set to <TRUE/> (which is the default), then GetTime will always return a valid time, no matter whether the current text can really be interpreted as time. (Note: this - is the compatible bahavior). + is the compatible behaviour). If this is set to <FALSE/>, the GetTime will return GetInvalidTime, in case the current text cannot be interpreted as time. commit d68d2cedca1870f3ee107432b0e28bc7112c3dff Author: Matthias Seidel <[email protected]> AuthorDate: Fri Dec 28 00:10:41 2018 +0000 Commit: Matthias Seidel <[email protected]> CommitDate: Fri Dec 28 00:10:41 2018 +0000 Fixed typos (optinal -> optional) diff --git a/filter/source/config/cache/typedetection.hxx b/filter/source/config/cache/typedetection.hxx index 9aa41434fcf3..4460eef81656 100644 --- a/filter/source/config/cache/typedetection.hxx +++ b/filter/source/config/cache/typedetection.hxx @@ -206,7 +206,7 @@ class TypeDetection : public ::cppu::ImplInheritanceHelper1< BaseContainer /** @short seek a might existing stream to position 0. - @descr This is an optinal action to be more robust + @descr This is an optional action to be more robust in case any detect service doesn't make this seek ... Normaly it's part of any called detect service or filter ... but sometimes it's not done there. diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx index 26f3d2ad78d7..3de21a018971 100644 --- a/filter/source/svg/svgwriter.cxx +++ b/filter/source/svg/svgwriter.cxx @@ -1648,7 +1648,7 @@ void SVGActionWriter::ImplWriteActions( const GDIMetaFile& rMtf, { mapCurShape->maShapePolyPoly = aStartArrow; - if( pElementId ) // #i124825# pElementId is optinal, may be zero + if( pElementId ) // #i124825# pElementId is optional, may be zero { mapCurShape->maId = *pElementId + B2UCONST("_") + ::rtl::OUString::valueOf(nEntryCount++); } @@ -1660,7 +1660,7 @@ void SVGActionWriter::ImplWriteActions( const GDIMetaFile& rMtf, { mapCurShape->maShapePolyPoly = aEndArrow; - if( pElementId ) // #i124825# pElementId is optinal, may be zero + if( pElementId ) // #i124825# pElementId is optional, may be zero { mapCurShape->maId = *pElementId + B2UCONST("_") + ::rtl::OUString::valueOf(nEntryCount++); } diff --git a/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl b/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl index c2a926502ecb..ef7d447fae9a 100644 --- a/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl +++ b/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl @@ -138,7 +138,7 @@ interface XDatabaseDataProvider */ [attribute,bound] long CommandType; - /** specifies an additional filter to optinally use. + /** specifies an additional filter to optionally use. <p>The Filter string has to form a SQL WHERE-clause, <em>without</em> the WHERE-string itself.</p> _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
