Typo: trough->through
Change-Id: I5af784709df88492695d1ac9c9a5b020e909f362
This commit is contained in:
parent
800e09a3ce
commit
b98ac70724
@ -511,7 +511,7 @@ void OStatement_Base::GetAssignValues()
|
||||
return;
|
||||
else if (SQL_ISRULE(m_pParseTree,insert_statement))
|
||||
{
|
||||
// Create Row for the values to be set (Reference trough new)
|
||||
// Create Row for the values to be set (Reference through new)
|
||||
if(m_aAssignValues.is())
|
||||
m_aAssignValues->get().clear();
|
||||
sal_Int32 nCount = Reference<XIndexAccess>(m_xColNames,UNO_QUERY)->getCount();
|
||||
|
@ -192,7 +192,7 @@ STDMETHODIMP EmbedDocument_Impl::DoVerb(
|
||||
pActiveSite,TRUE)))
|
||||
return NOERROR;
|
||||
|
||||
// intended fall trough
|
||||
// intended fall through
|
||||
case OLEIVERB_OPEN:
|
||||
OSL_ENSURE(m_pDocHolder,"no document to open");
|
||||
|
||||
|
2
filter/source/config/cache/basecontainer.hxx
vendored
2
filter/source/config/cache/basecontainer.hxx
vendored
@ -136,7 +136,7 @@ class BaseContainer : public BaseLock
|
||||
|
||||
@descr Because an outside class must use ImplInheritanceHelper2 template to
|
||||
use us a base class ... and there is no way to pass such initializing
|
||||
parameters trough a required default ctor ... we must be initialized
|
||||
parameters through a required default ctor ... we must be initialized
|
||||
by this special method. Of course this method must be called first before
|
||||
any other interface method is used.
|
||||
|
||||
|
2
filter/source/config/cache/typedetection.hxx
vendored
2
filter/source/config/cache/typedetection.hxx
vendored
@ -219,7 +219,7 @@ private:
|
||||
|
||||
@throw Any suitable exception if stream should be opened but operation was not successful.
|
||||
Note: If an interactionHandler is part of the given descriptor too, it was already used.
|
||||
Means: let the exception pass trough the top most interface method!
|
||||
Means: let the exception pass through the top most interface method!
|
||||
*/
|
||||
void impl_openStream(utl::MediaDescriptor& rDescriptor)
|
||||
throw (css::uno::Exception);
|
||||
|
@ -969,7 +969,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize,
|
||||
for ( nc = 0; nc < 4; nc++ )
|
||||
pComp[ nc ] = new sal_uInt8[ nWidth ];
|
||||
|
||||
// loop trough rows:
|
||||
// loop through rows:
|
||||
for ( ny = 0; ny < nHeight; ny++ )
|
||||
{
|
||||
// read line ny of source into the intermediate data structure
|
||||
@ -991,7 +991,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize,
|
||||
else
|
||||
pPict->WriteUChar( 0 );
|
||||
|
||||
// loop trough components:
|
||||
// loop through components:
|
||||
for ( nc = 0; nc < 4; nc++ )
|
||||
{
|
||||
// loop through x:
|
||||
@ -1146,7 +1146,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize,
|
||||
// remember position of the map-data in the target:
|
||||
nDstMapPos=pPict->Tell();
|
||||
|
||||
// loop trough rows:
|
||||
// loop through rows:
|
||||
for ( ny = 0; ny < nHeight; ny++ )
|
||||
{
|
||||
// read line ny of source into the buffer:
|
||||
@ -1186,7 +1186,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize,
|
||||
else
|
||||
pPict->WriteUChar( 0 );
|
||||
|
||||
// loop trough bytes of the row:
|
||||
// loop through bytes of the row:
|
||||
nx=0;
|
||||
while ( nx < nDstRowBytes && bStatus )
|
||||
{
|
||||
|
@ -281,12 +281,12 @@ void PCDReader::ReadImage(sal_uLong nMinPercent, sal_uLong nMaxPercent)
|
||||
}
|
||||
}
|
||||
|
||||
// loop trough both rows of the pair of rows:
|
||||
// loop through both rows of the pair of rows:
|
||||
for ( ndy = 0; ndy < 2; ndy++ )
|
||||
{
|
||||
ny = ( nYPair << 1 ) + ndy;
|
||||
|
||||
// loop trough X:
|
||||
// loop through X:
|
||||
for ( nx = 0; nx < nWidth; nx++ )
|
||||
{
|
||||
// get/calculate nL,nCb,nCr for the pixel nx,ny:
|
||||
|
@ -99,7 +99,7 @@ void BasicCodeTagger::getBasicCodeContainerNodes()
|
||||
|
||||
//! Extracts Basic Codes containted in <bascode> tags.
|
||||
/*!
|
||||
* For each <bascode> this method iterates trough it's <paragraph> tags and "inserts" <item> tags according
|
||||
* For each <bascode> this method iterates through it's <paragraph> tags and "inserts" <item> tags according
|
||||
* to the Basic code syntax found in that paragraph.
|
||||
*/
|
||||
void BasicCodeTagger::tagBasCodeParagraphs()
|
||||
|
@ -957,7 +957,7 @@ BaseContent::setPropertyValues(
|
||||
ret[i] <<= e;
|
||||
}
|
||||
|
||||
// NameChanges come back trough a ContentEvent
|
||||
// NameChanges come back through a ContentEvent
|
||||
break; // only handling Title
|
||||
} // end for
|
||||
|
||||
|
@ -101,9 +101,9 @@ bool FontSubsetInfo::CreateFontSubset(
|
||||
case ANY_TYPE1:
|
||||
bOK = CreateFontSubsetFromType1( pOutGlyphWidths);
|
||||
break;
|
||||
// fall trough
|
||||
// fall through
|
||||
case NO_FONT:
|
||||
// fall trough
|
||||
// fall through
|
||||
default:
|
||||
OSL_FAIL( "unhandled type in CreateFontSubset()");
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user