Author: mseidel Date: Sat Dec 29 23:59:21 2018 New Revision: 1849944 URL: http://svn.apache.org/viewvc?rev=1849944&view=rev Log: Fixed typos (boundries -> boundaries)
Modified: openoffice/trunk/main/oox/source/ole/axbinaryreader.cxx openoffice/trunk/main/udkapi/com/sun/star/script/ArrayWrapper.idl openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx Modified: openoffice/trunk/main/oox/source/ole/axbinaryreader.cxx URL: http://svn.apache.org/viewvc/openoffice/trunk/main/oox/source/ole/axbinaryreader.cxx?rev=1849944&r1=1849943&r2=1849944&view=diff ============================================================================== --- openoffice/trunk/main/oox/source/ole/axbinaryreader.cxx (original) +++ openoffice/trunk/main/oox/source/ole/axbinaryreader.cxx Sat Dec 29 23:59:21 2018 @@ -231,7 +231,7 @@ bool AxBinaryPropertyReader::StringArray 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; Modified: openoffice/trunk/main/udkapi/com/sun/star/script/ArrayWrapper.idl URL: http://svn.apache.org/viewvc/openoffice/trunk/main/udkapi/com/sun/star/script/ArrayWrapper.idl?rev=1849944&r1=1849943&r2=1849944&view=diff ============================================================================== --- openoffice/trunk/main/udkapi/com/sun/star/script/ArrayWrapper.idl (original) +++ openoffice/trunk/main/udkapi/com/sun/star/script/ArrayWrapper.idl Sat Dec 29 23:59:21 2018 @@ -33,7 +33,7 @@ module com { module sun { module star //============================================================================= /** 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 Modified: openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx URL: http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx?rev=1849944&r1=1849943&r2=1849944&view=diff ============================================================================== --- openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx (original) +++ openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx Sat Dec 29 23:59:21 2018 @@ -1708,7 +1708,7 @@ bool UniscribeLayout::GetItemSubrange( c && (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;