diff options
author | Matthias Seidel <mseidel@apache.org> | 2018-12-29 23:59:21 +0000 |
---|---|---|
committer | Matthias Seidel <mseidel@apache.org> | 2018-12-29 23:59:21 +0000 |
commit | b92f9eee148c42c9f261695be22cc307cfd9a1ab (patch) | |
tree | b41dfd341eef62a28a58312634ead2ca705426c0 | |
parent | 043d259e71a6f74120856ad1e96b4d79c333ada7 (diff) |
Fixed typos (boundries -> boundaries)
Notes
Notes:
prefer: 5fa6a79864af82c9d60ddef0d618106a8214e431
-rw-r--r-- | oox/source/ole/axbinaryreader.cxx | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/script/ArrayWrapper.idl | 2 | ||||
-rw-r--r-- | vcl/win/source/gdi/winlayout.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/ole/axbinaryreader.cxx b/oox/source/ole/axbinaryreader.cxx index 34cae7e71eee..ed8119a1b4d5 100644 --- a/oox/source/ole/axbinaryreader.cxx +++ b/oox/source/ole/axbinaryreader.cxx @@ -231,7 +231,7 @@ bool AxBinaryPropertyReader::StringArrayProperty::readProperty( AxAlignedInputSt if( !lclReadString( rInStrm, aString, rInStrm.readuInt32(), true ) ) return false; mrArray.push_back( aString ); - // every array string is aligned on 4 byte boundries + // every array string is aligned on 4 byte boundaries rInStrm.align( 4 ); } return true; diff --git a/udkapi/com/sun/star/script/ArrayWrapper.idl b/udkapi/com/sun/star/script/ArrayWrapper.idl index 289a40036400..9bb6fe5f245f 100644 --- a/udkapi/com/sun/star/script/ArrayWrapper.idl +++ b/udkapi/com/sun/star/script/ArrayWrapper.idl @@ -33,7 +33,7 @@ module com { module sun { module star { module script { //============================================================================= /** Allows an UNO sequence that is passed between different language - boundries to indicate it prefers to be represented as a multidimensional + boundaries to indicate it prefers to be represented as a multidimensional array with 0 or 1 based indices. UNO does not natively represent Multi-Dimensional arrays, instead a sequence can have elements that are themselves sequences (an array of arrays ). <p>Some languages ( example diff --git a/vcl/win/source/gdi/winlayout.cxx b/vcl/win/source/gdi/winlayout.cxx index 51db718e72e2..3d3a998681ff 100644 --- a/vcl/win/source/gdi/winlayout.cxx +++ b/vcl/win/source/gdi/winlayout.cxx @@ -1708,7 +1708,7 @@ bool UniscribeLayout::GetItemSubrange( const VisualItem& rVisualItem, && (rVisualItem.mnEndCharPos <= mnEndCharPos ) ) return true; - // get glyph range from char range by looking at cluster boundries + // get glyph range from char range by looking at cluster boundaries // TODO: optimize for case that LTR/RTL correspond to monotonous glyph indexes rMinGlyphPos = rVisualItem.mnEndGlyphPos; int nMaxGlyphPos = 0; |