Kaydet (Commit) 6327919b authored tarafından Matteo Casalin's avatar Matteo Casalin

sal_uInt16 to size_t

Change-Id: I64bc6daa0585686c4d337a5c32ed7009b96fae0c
üst f8d63eb1
......@@ -51,7 +51,7 @@ namespace {
rInvalid.clear();
for( sal_uInt16 n = 0; n < ftnIdxs.size(); ++n )
for( size_t n = 0; n < ftnIdxs.size(); ++n )
{
SwTxtFtn* pTxtFtn = ftnIdxs[ n ];
if ( pTxtFtn != pExclude )
......@@ -312,7 +312,7 @@ void SwTxtFtn::SetStartNode( const SwNodeIndex *pNewNode, bool bDelNode )
DELETEZ( m_pStartNode );
// loesche die Fussnote noch aus dem Array am Dokument
for( sal_uInt16 n = 0; n < pDoc->GetFtnIdxs().size(); ++n )
for( size_t n = 0; n < pDoc->GetFtnIdxs().size(); ++n )
if( this == pDoc->GetFtnIdxs()[n] )
{
pDoc->GetFtnIdxs().erase( pDoc->GetFtnIdxs().begin() + n );
......
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